mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-18 07:23:03 +00:00
Delete console.log
This commit is contained in:
@@ -25,7 +25,7 @@ import { isUndefined } from 'util';
|
|||||||
templateUrl: './collection-page.component.html',
|
templateUrl: './collection-page.component.html',
|
||||||
changeDetection: ChangeDetectionStrategy.OnPush
|
changeDetection: ChangeDetectionStrategy.OnPush
|
||||||
})
|
})
|
||||||
export class CollectionPageComponent implements OnChanges, OnInit, OnDestroy {
|
export class CollectionPageComponent implements OnInit, OnDestroy {
|
||||||
collectionData: RemoteData<Collection>;
|
collectionData: RemoteData<Collection>;
|
||||||
itemData: RemoteData<Item[]>;
|
itemData: RemoteData<Item[]>;
|
||||||
logoData: RemoteData<Bitstream>;
|
logoData: RemoteData<Bitstream>;
|
||||||
@@ -44,10 +44,6 @@ export class CollectionPageComponent implements OnChanges, OnInit, OnDestroy {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
ngOnChanges(changes: SimpleChanges) {
|
|
||||||
console.log(changes);
|
|
||||||
}
|
|
||||||
|
|
||||||
ngOnInit(): void {
|
ngOnInit(): void {
|
||||||
this.subs.push(this.route.params.map((params: Params) => params.id)
|
this.subs.push(this.route.params.map((params: Params) => params.id)
|
||||||
.subscribe((id: string) => {
|
.subscribe((id: string) => {
|
||||||
@@ -105,6 +101,5 @@ export class CollectionPageComponent implements OnChanges, OnInit, OnDestroy {
|
|||||||
this.ref.detectChanges();
|
this.ref.detectChanges();
|
||||||
}
|
}
|
||||||
}));
|
}));
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user