Skip to content

Commit

Permalink
Refactor #9744
Browse files Browse the repository at this point in the history
  • Loading branch information
yigitfindikli committed Mar 16, 2021
1 parent c296f36 commit d541582
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/components/galleria/galleria.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {NgModule,Component,ElementRef,OnDestroy,Input,Output,EventEmitter,ChangeDetectionStrategy, ViewChild, ContentChildren, QueryList, TemplateRef, OnInit, OnChanges, AfterContentChecked, SimpleChanges, ViewEncapsulation, ChangeDetectorRef} from '@angular/core';
import {NgModule,Component,ElementRef,OnDestroy,Input,Output,EventEmitter,ChangeDetectionStrategy, ViewChild, ContentChildren, QueryList, TemplateRef, OnInit, OnChanges, AfterContentChecked, SimpleChanges, ViewEncapsulation, ChangeDetectorRef, AfterViewInit} from '@angular/core';
import {CommonModule} from '@angular/common';
import { SharedModule, PrimeTemplate } from 'primeng/api';
import { UniqueComponentId } from 'primeng/utils';
Expand Down Expand Up @@ -505,7 +505,7 @@ export class GalleriaItem implements OnInit {
`,
changeDetection: ChangeDetectionStrategy.OnPush
})
export class GalleriaThumbnails implements OnInit, AfterContentChecked, OnDestroy {
export class GalleriaThumbnails implements OnInit, AfterContentChecked, AfterViewInit, OnDestroy {

@Input() containerId: string;

Expand Down

0 comments on commit d541582

Please sign in to comment.