From 958d3d33a7a20171475acd47c48eec1194d5d41d Mon Sep 17 00:00:00 2001 From: Timo Date: Tue, 19 Jan 2021 21:14:04 +0200 Subject: [PATCH] fixed prod build error --- .../bulk-actions/bulk-actions.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/red-ui/src/app/screens/project-overview-screen/bulk-actions/bulk-actions.component.ts b/apps/red-ui/src/app/screens/project-overview-screen/bulk-actions/bulk-actions.component.ts index 2a50aa310..196951b45 100644 --- a/apps/red-ui/src/app/screens/project-overview-screen/bulk-actions/bulk-actions.component.ts +++ b/apps/red-ui/src/app/screens/project-overview-screen/bulk-actions/bulk-actions.component.ts @@ -37,7 +37,7 @@ export class BulkActionsComponent { return this._appStateService?.activeProject; } - private get selectedFiles(): FileStatusWrapper[] { + get selectedFiles(): FileStatusWrapper[] { return this.selectedFileIds.map((fileId) => this._appStateService.getFileById(this._appStateService.activeProject.project.projectId, fileId)); }