mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 06:01:22 +08:00
set @ViewChild static: true
this was introduced in angular 8 see https://angular.io/guide/static-query-migration
This commit is contained in:
parent
32da574360
commit
bb864cb489
@ -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) {}
|
||||
|
@ -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 } = {};
|
||||
|
Loading…
x
Reference in New Issue
Block a user