From fceb7ecb9ecc2a8e192ae6b3e2be9b5c86131051 Mon Sep 17 00:00:00 2001 From: Mykyta Maliarchuk <84377976+nikita-web-ua@users.noreply.github.com> Date: Wed, 5 Jul 2023 17:32:45 +0200 Subject: [PATCH] make resetNewFolderPagination method public again (#8739) --- .../src/lib/document-list/components/document-list.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/content-services/src/lib/document-list/components/document-list.component.ts b/lib/content-services/src/lib/document-list/components/document-list.component.ts index bba4a92908..5118867ff6 100644 --- a/lib/content-services/src/lib/document-list/components/document-list.component.ts +++ b/lib/content-services/src/lib/document-list/components/document-list.component.ts @@ -938,7 +938,7 @@ export class DocumentListComponent implements OnInit, OnChanges, OnDestroy, Afte this.filterSelection.emit(activeFilters); } - private resetNewFolderPagination() { + resetNewFolderPagination() { this._pagination.skipCount = 0; this._pagination.maxItems = this.maxItems; }