set @ViewChild static: true

this was introduced in angular 8
see https://angular.io/guide/static-query-migration
This commit is contained in:
Kai Röder 2019-09-28 13:50:10 +02:00
parent 32da574360
commit bb864cb489
2 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@ import { NgStory, ICollection } from './types';
template: '<ng-template #target></ng-template>',
})
export class AppComponent implements OnInit, OnDestroy {
@ViewChild('target', { read: ViewContainerRef })
@ViewChild('target', { read: ViewContainerRef, static: true })
target: ViewContainerRef;
constructor(private cfr: ComponentFactoryResolver, @Inject(STORY) private data: NgStory) {}

View File

@ -28,7 +28,7 @@ import { StoryFnAngularReturnType, ICollection } from '../../types';
template: '<ng-template #target></ng-template>',
})
export class AppComponent implements OnInit, OnDestroy {
@ViewChild('target', { read: ViewContainerRef })
@ViewChild('target', { read: ViewContainerRef, static: true })
target: ViewContainerRef;
readonly previousValues: { [key: string]: any } = {};