Skip to content

Commit

Permalink
Update list-medication.component.ts
Browse files Browse the repository at this point in the history
Fixed to display medication name. Status and Rx date still not in FHIR response.
  • Loading branch information
OhHeyAlan authored Oct 17, 2023
1 parent f320044 commit 24f1e92
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {GenericColumnDefn, ListGenericResourceComponent} from './list-generic-re
})
export class ListMedicationComponent extends ListGenericResourceComponent {
columnDefinitions: GenericColumnDefn[] = [
{ title: 'Medication', versions: '*', format: 'codeableConcept', getter: c => c.medicationCodeableConcept },
{ title: 'Medication', versions: '*', getter: c => c.code.text },
{ title: 'Date Prescribed', versions: '*', format: 'date', getter: c => c.authoredOn },
{ title: 'Status', 'versions': '*', getter: c => c.status }
]
Expand Down

0 comments on commit 24f1e92

Please sign in to comment.