Skip to content

Commit

Permalink
using codableConcept formatter with OhHeyAlan's pr.
Browse files Browse the repository at this point in the history
  • Loading branch information
AnalogJ committed Sep 5, 2023
1 parent 25f37f3 commit 84bcf41
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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

]
Expand Down

0 comments on commit 84bcf41

Please sign in to comment.