Adding Address information for Location table.

This commit is contained in:
Jason Kulatunga 2023-09-05 10:17:44 -07:00
parent c063c654df
commit 78677961d5
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -12,6 +12,6 @@ export class ListLocationComponent extends ListGenericResourceComponent {
{ title: 'Name', versions: '*', getter: d => d.name || d.alias },
{ title: 'Organization', versions: '*', getter: d => d.managingOrganization?.display },
{ title: 'Type', versions: '*', format: 'codeableConcept', getter: d => d.physicalType },
{ title: 'Status', versions: '*', getter: d => d.status },
{ title: 'Address', versions: '*', format: 'address', getter: d => d.address },
]
}