Skip to content

Commit

Permalink
(fix) O3-4291: The Active status label was changed to a lower case "a"
Browse files Browse the repository at this point in the history
  • Loading branch information
mogoodrich committed Dec 20, 2024
1 parent c34c3b2 commit ec2a65a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/prescriptions/prescription-tab-panel.component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,14 @@ const PrescriptionTabPanel: React.FC<PrescriptionTabPanelProps> = ({ searchTerm,
config.refreshInterval,
);

// dynamic status keys we need to maintain
// t('active', 'Active')
// t('paused', 'Paused')
// t('closed', 'Closed')
// t('completed', 'Completed')
// t('expired', 'Expired')
// t('cancelled', 'Cancelled')

let columns = [
{ header: t('created', 'Created'), key: 'created' },
{ header: t('patientName', 'Patient name'), key: 'patient' },
Expand Down
1 change: 1 addition & 0 deletions translations/en.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"active": "Active",
"activePrescriptions": "Active prescriptions",
"age": "Age",
"allergiesCount_one": "{{count}} allergy",
Expand Down

0 comments on commit ec2a65a

Please sign in to comment.