diff --git a/apps/red-ui/src/app/modules/file-preview/components/user-management/user-management.component.html b/apps/red-ui/src/app/modules/file-preview/components/user-management/user-management.component.html index 2c16c3499..7985ef1cc 100644 --- a/apps/red-ui/src/app/modules/file-preview/components/user-management/user-management.component.html +++ b/apps/red-ui/src/app/modules/file-preview/components/user-management/user-management.component.html @@ -42,6 +42,7 @@ > this._openDeleteFileDialog($event), tooltip: _('dossier-overview.delete.action'), diff --git a/apps/red-ui/src/app/modules/shared/components/expandable-file-actions/expandable-file-actions.component.html b/apps/red-ui/src/app/modules/shared/components/expandable-file-actions/expandable-file-actions.component.html index 821e8634f..a76e7f9cf 100644 --- a/apps/red-ui/src/app/modules/shared/components/expandable-file-actions/expandable-file-actions.component.html +++ b/apps/red-ui/src/app/modules/shared/components/expandable-file-actions/expandable-file-actions.component.html @@ -2,6 +2,7 @@ { { label: _('trash.table-col-names.name'), sortByKey: 'name' }, { label: _('trash.table-col-names.owner'), class: 'user-column', sortByKey: 'ownerName' }, { label: _('trash.table-col-names.dossier'), sortByKey: 'fileDossierName' }, - { label: _('trash.table-col-names.deleted-on'), sortByKey: 'softDeletedTime' }, + { label: _('trash.table-col-names.deleted-on'), sortByKey: 'softDeletedTime', id: 'deleted-on' }, { label: _('trash.table-col-names.time-to-restore'), sortByKey: 'restoreDate' }, ]; diff --git a/libs/common-ui b/libs/common-ui index c174a1985..9589808c6 160000 --- a/libs/common-ui +++ b/libs/common-ui @@ -1 +1 @@ -Subproject commit c174a1985e504084920499bab90e3ed8da50e474 +Subproject commit 9589808c6de13dd66179cb7ced92dcd920cc3f74 diff --git a/libs/red-domain/src/lib/shared/expandable-file-actions.ts b/libs/red-domain/src/lib/shared/expandable-file-actions.ts index c599d9fef..5d498fb6f 100644 --- a/libs/red-domain/src/lib/shared/expandable-file-actions.ts +++ b/libs/red-domain/src/lib/shared/expandable-file-actions.ts @@ -12,6 +12,7 @@ export const ActionTypes = { }; export interface Action { + id?: string; action?: (...args: unknown[]) => void; tooltip?: string; icon?: string;