update angular
This commit is contained in:
@@ -111,7 +111,7 @@ export class GalleryViewComponent implements OnInit {
|
||||
|
||||
sequenceId = 0;
|
||||
|
||||
@ViewChild(GalleryFilterView, {static: false})
|
||||
@ViewChild(GalleryFilterView)
|
||||
filter : GalleryFilterView;
|
||||
|
||||
ascDescImages = JSON.stringify([
|
||||
|
||||
@@ -20,7 +20,7 @@ export class QueryAutocompleteComponent implements OnInit {
|
||||
|
||||
query : string;
|
||||
|
||||
@ViewChild(MatAutocompleteTrigger, {static: false})
|
||||
@ViewChild(MatAutocompleteTrigger)
|
||||
autocomplete: MatAutocompleteTrigger;
|
||||
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user