update angular

This commit is contained in:
2020-03-29 09:21:07 +02:00
parent a81eb7c4ed
commit ef7968aba2
7 changed files with 3378 additions and 2158 deletions

View File

@@ -111,7 +111,7 @@ export class GalleryViewComponent implements OnInit {
sequenceId = 0;
@ViewChild(GalleryFilterView, {static: false})
@ViewChild(GalleryFilterView)
filter : GalleryFilterView;
ascDescImages = JSON.stringify([

View File

@@ -20,7 +20,7 @@ export class QueryAutocompleteComponent implements OnInit {
query : string;
@ViewChild(MatAutocompleteTrigger, {static: false})
@ViewChild(MatAutocompleteTrigger)
autocomplete: MatAutocompleteTrigger;

View File

@@ -28,23 +28,23 @@ export class VisualizationPageComponent implements OnInit {
groupBy = new Array<TagField>();
@ViewChild('limitbycomponent', {static: false})
@ViewChild('limitbycomponent')
private limitbycomponent : LimitByComponent;
@ViewChild('y1AxisDefinitionComponent', {static: false, read: YAxisDefinitionComponent})
@ViewChild('y1AxisDefinitionComponent', { read: YAxisDefinitionComponent })
private y1AxisDefinitionComponent : YAxisDefinitionComponent;
@ViewChild('y2AxisDefinitionComponent', {static: false, read: YAxisDefinitionComponent})
@ViewChild('y2AxisDefinitionComponent', { read: YAxisDefinitionComponent })
private y2AxisDefinitionComponent : YAxisDefinitionComponent;
@ViewChild('query', {static: false})
@ViewChild('query')
query: QueryAutocompleteComponent;
@ViewChild('plotView', {static: false})
@ViewChild('plotView')
plotView: PlotViewComponent;
@ViewChild('galleryView', {static: false})
@ViewChild('galleryView')
galleryView: GalleryViewComponent;
enableGallery = false;