diff --git a/src/app/collection-page/collection-page.component.ts b/src/app/collection-page/collection-page.component.ts index 72c9ebd240..e08d078ddc 100644 --- a/src/app/collection-page/collection-page.component.ts +++ b/src/app/collection-page/collection-page.component.ts @@ -25,7 +25,7 @@ import { isUndefined } from 'util'; templateUrl: './collection-page.component.html', changeDetection: ChangeDetectionStrategy.OnPush }) -export class CollectionPageComponent implements OnChanges, OnInit, OnDestroy { +export class CollectionPageComponent implements OnInit, OnDestroy { collectionData: RemoteData; itemData: RemoteData; logoData: RemoteData; @@ -44,10 +44,6 @@ export class CollectionPageComponent implements OnChanges, OnInit, OnDestroy { } - ngOnChanges(changes: SimpleChanges) { - console.log(changes); - } - ngOnInit(): void { this.subs.push(this.route.params.map((params: Params) => params.id) .subscribe((id: string) => { @@ -105,6 +101,5 @@ export class CollectionPageComponent implements OnChanges, OnInit, OnDestroy { this.ref.detectChanges(); } })); - } }