hide gallery when it is not active

This commit is contained in:
2023-03-17 17:08:55 +01:00
parent 359c17bf29
commit 6d8af4fdc6
2 changed files with 5 additions and 3 deletions

View File

@@ -96,8 +96,6 @@ export class VisualizationPageComponent implements OnInit, AfterViewInit {
this.plot();
}
});
}
ngAfterViewInit(): void {
@@ -128,6 +126,10 @@ ngAfterViewInit(): void {
}
}
toggleGallery(event: Event){
this.galleryView.show = this.enableGallery;
}
loading(event: LoadingEvent) {
this.plotJobActive = event.loading;
}