From ef68bfcc56c967529589eb7d943a4b259292b07a Mon Sep 17 00:00:00 2001 From: OhHeyAlan Date: Mon, 16 Oct 2023 11:24:25 -0500 Subject: [PATCH] Update list-binary.component.ts (#280) Co-authored-by: Jason Kulatunga --- .../components/list-generic-resource/list-binary.component.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/src/app/components/list-generic-resource/list-binary.component.ts b/frontend/src/app/components/list-generic-resource/list-binary.component.ts index 75a91ed8..4352d1e9 100644 --- a/frontend/src/app/components/list-generic-resource/list-binary.component.ts +++ b/frontend/src/app/components/list-generic-resource/list-binary.component.ts @@ -10,6 +10,8 @@ import {attributeXTime} from './utils'; export class ListBinaryComponent extends ListGenericResourceComponent { columnDefinitions: GenericColumnDefn[] = [ { title: 'Content-Type', versions: '*', getter: c => c.contentType }, + { title: 'ID', versions: '*', getter: c => c.id }, + { title: 'Last Updated', versions: '*', getter: c => c.meta?.lastUpdated }, { title: 'Size', versions: '*', getter: c => Math.floor((c.data?.length *4 +2)/3) } ] }