From 8a55ae93cafeb0bf2ff047e4a3e0b38315ba756d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adina=20=C8=9Aeudan?= Date: Tue, 8 Dec 2020 10:32:11 +0200 Subject: [PATCH] Missing reload after bulk assign --- .../bulk-actions/bulk-actions.component.ts | 4 +++- 1 file changed, 3 insertions(+), 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 56b6c786d..f0cb2ffb3 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 @@ -68,7 +68,9 @@ export class BulkActionsComponent { } public assign() { - this._dialogService.openBulkAssignFileReviewerDialog(this.selectedFileIds); + this._dialogService.openBulkAssignFileReviewerDialog(this.selectedFileIds, () => { + this.reload.emit(); + }); } public reanalyse() {