intelica-library-ui 0.1.130 → 0.1.131
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -4251,12 +4251,7 @@ class TableFetchComponent {
|
|
|
4251
4251
|
}
|
|
4252
4252
|
UpdatePages() {
|
|
4253
4253
|
if (this.ShowPagination) {
|
|
4254
|
-
|
|
4255
|
-
this.TotalRecords = this.FilteredList.length;
|
|
4256
|
-
}
|
|
4257
|
-
else {
|
|
4258
|
-
this.TotalRecords = this.TotalItems;
|
|
4259
|
-
}
|
|
4254
|
+
this.TotalRecords = this.TotalItems;
|
|
4260
4255
|
const start = (this.CurrentPage - 1) * this.RowsPerPage;
|
|
4261
4256
|
const end = start + this.RowsPerPage;
|
|
4262
4257
|
this.ListDataTable = this.FilteredList.slice(start, end);
|