Walking through the application in preparation for tomorrow's demo, I made a few small improvements. This includes:
Improved text wrapping within the AttachmentComponent, which closes #29
src/components/AttachmentUpload/index.tsx: Changes to the upload-component label to (hopefully) be less confusing when it comes to upload limits.
src/components/AttachmentUpload/index.tsx: Uses the patient.name field instead of deprecated patientId provided by the ExportJob object. Also, introduces slightly-better wrapping for the action buttons on smaller screens.
src/components/ExportJobListItemLarge/index.tsx: Also uses patient.name field now instead of patientId.
Walking through the application in preparation for tomorrow's demo, I made a few small improvements. This includes:
src/components/AttachmentUpload/index.tsx
: Changes to the upload-component label to (hopefully) be less confusing when it comes to upload limits.src/components/AttachmentUpload/index.tsx
: Uses thepatient.name
field instead of deprecatedpatientId
provided by the ExportJob object. Also, introduces slightly-better wrapping for the action buttons on smaller screens.src/components/ExportJobListItemLarge/index.tsx
: Also usespatient.name
field now instead ofpatientId
.src/components/InstitutionList/index.tsx
: Remove unnecessary margins.src/components/UserExportJobList/index.tsx
: Plus button for New Export is sized to match the now-larger button.src/lib/exportJobHelpers.ts
: Delete operation uses the newly created endpoint not requiring auth.src/pages/ExportJobList/index.tsx
: Better language and paragraph breaking when there are no jobs.src/pages/HomePage/index.tsx
: Add link to original App Flow slides; links all open in a new tab.src/types/index.tsx
: Updates to use new type definition w/r/t patient information.