diff --git a/ui-ngx/src/app/modules/home/components/entity/entities-table.component.html b/ui-ngx/src/app/modules/home/components/entity/entities-table.component.html
index c3350c63a4..5f023b2efb 100644
--- a/ui-ngx/src/app/modules/home/components/entity/entities-table.component.html
+++ b/ui-ngx/src/app/modules/home/components/entity/entities-table.component.html
@@ -262,7 +262,7 @@
class="no-data-found">{{ 'common.loading' | translate }}
- {
- this.paginator.pageIndex = Number(params.page) || 0;
- this.paginator.pageSize = Number(params.pageSize) || this.defaultPageSize;
+ if (this.displayPagination) {
+ this.paginator.pageIndex = Number(params.page) || 0;
+ this.paginator.pageSize = Number(params.pageSize) || this.defaultPageSize;
+ }
this.sort.active = params.property || this.entitiesTableConfig.defaultSortOrder.property;
this.sort.direction = (params.direction || this.entitiesTableConfig.defaultSortOrder.direction).toLowerCase() as SortDirection;
if (params.hasOwnProperty('textSearch') && !isEmptyStr(params.textSearch)) {