Fixed multiple annotation select

This commit is contained in:
Adina Țeudan 2021-04-23 15:26:00 +03:00
parent dfe85b96a3
commit 05c31c6e56

View File

@ -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 });
}
}