using codableConcept formatter with OhHeyAlan's pr.

This commit is contained in:
Jason Kulatunga 2023-09-05 08:29:08 -07:00
parent 25f37f37b9
commit 84bcf41735
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ export class ListDocumentReferenceComponent extends ListGenericResourceComponent
columnDefinitions: GenericColumnDefn[] = [
{ title: 'Date', versions: '*', format: 'date', getter: d => d.date },
{ title: 'Content', versions: '*', getter: d => d.content?.[0]?.attachment.title },
{ title: 'Category', versions: '*', getter: d => d.type.text }, // Document category - This is more accurate. Previous mostly shows "unknown".
{ title: 'Category', versions: '*', format: 'codeableConcept', getter: d => d.type }, // Document category - This is more accurate. Previous mostly shows "unknown".
{ title: 'Author', versions: '*', getter: d => d.author?.[0]?.display }, // Whoever creates the document
]