RED-9944 - fix build

This commit is contained in:
Valentin Mihai 2024-11-01 14:39:35 +02:00
parent a3b2382bad
commit 53e9725243

View File

@ -147,13 +147,13 @@ export class AnnotationActionsComponent implements OnChanges {
hideAnnotation() {
this._annotationManager.hide(this.viewerAnnotations);
this._annotationManager.deselect();
viewerAnnotations.forEach(a => this._annotationManager.addToHidden(a.Id));
this.viewerAnnotations.forEach(a => this._annotationManager.addToHidden(a.Id));
}
showAnnotation() {
this._annotationManager.show(this.viewerAnnotations);
this._annotationManager.deselect();
viewerAnnotations.forEach(a => this._annotationManager.removeFromHidden(a.Id));
this.viewerAnnotations.forEach(a => this._annotationManager.removeFromHidden(a.Id));
}
resize() {