Skip to content
This repository was archived by the owner on Nov 30, 2022. It is now read-only.

Commit 59f0d46

Browse files
committed
fix(gallery-toolbar): content must be static
1 parent 1e2c7ab commit 59f0d46

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

projects/core/src/lib/gallery/gallery-toolbar/gallery-toolbar.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import {
1212
styleUrls: ['./gallery-toolbar.component.scss']
1313
})
1414
export class FivGalleryToolbar implements OnInit {
15-
@ViewChild(TemplateRef, { static: false }) content: TemplateRef<any>;
15+
@ViewChild(TemplateRef, { static: true }) content: TemplateRef<any>;
1616
@Input() position: 'top' | 'bottom' = 'top';
1717

1818
constructor() {}

0 commit comments

Comments
 (0)