From 05c31c6e5668e1d703fe12510d5fc639e10a439e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adina=20=C8=9Aeudan?= Date: Fri, 23 Apr 2021 15:26:00 +0300 Subject: [PATCH] Fixed multiple annotation select --- .../components/file-workload/file-workload.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/red-ui/src/app/modules/projects/components/file-workload/file-workload.component.ts b/apps/red-ui/src/app/modules/projects/components/file-workload/file-workload.component.ts index 53af97aa6..453a89196 100644 --- a/apps/red-ui/src/app/modules/projects/components/file-workload/file-workload.component.ts +++ b/apps/red-ui/src/app/modules/projects/components/file-workload/file-workload.component.ts @@ -134,7 +134,7 @@ export class FileWorkloadComponent { if (($event.ctrlKey || $event.metaKey) && this.selectedAnnotations.length > 0) { this.multiSelectActive = true; } - this.selectAnnotations.emit({ annotations: [annotation], multiSelect: true }); + this.selectAnnotations.emit({ annotations: [annotation], multiSelect: this.multiSelectActive }); } }