diff --git a/src/app/components/page.component.ts b/src/app/components/page.component.ts index a87296c60..2c66c376b 100644 --- a/src/app/components/page.component.ts +++ b/src/app/components/page.component.ts @@ -64,8 +64,7 @@ export abstract class PageComponent { onPageLoaded(page: NodePaging) { this.isLoading = false; this.paging = page; - // TODO: review after ADF-2768 is fixed - this.pagination = this.pagination || page.list.pagination; + this.pagination = { ...page.list.pagination }; this.isEmpty = !(page.list.entries && page.list.entries.length > 0); }