Skip to content

Commit

Permalink
Update list-observation.component.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
OhHeyAlan authored and AnalogJ committed Aug 9, 2023
1 parent 54e644b commit 45059fa
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,12 @@ import {GenericColumnDefn, ListGenericResourceComponent} from './list-generic-re
})
export class ListObservationComponent extends ListGenericResourceComponent {
columnDefinitions: GenericColumnDefn[] = [
{ title: 'Issued Date', 'versions': '*', format: 'date', getter: o => o.issued },
// { title: 'Effective', 'versions': '*', getter: o => attributeXTime(o,'effective') },
{ title: 'Effective', 'versions': '*', getter: o => attributeXTime(o,'effective') },
{ title: 'Observation', versions: '*', format: 'code', getter: o => o.code.coding[0] },
{ title: 'Value', versions: '*', getter: o => obsValue(o) },
{ title: 'Effective', 'versions': '*', getter: o => attributeXTime(o,'effective') },
{ title: 'Issued Date', 'versions': '*', format: 'date', getter: o => o.issued },
// { title: 'Issued Date', 'versions': '*', format: 'date', getter: o => o.issued },
{ title: 'ID', versions: '*', getter: o => o.id }
]
}

0 comments on commit 45059fa

Please sign in to comment.