@wizishop/img-manager 15.2.38 → 15.2.39

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.
@@ -2264,11 +2264,9 @@ class PaginationComponent {
2264
2264
  this.pageChange = new EventEmitter();
2265
2265
  }
2266
2266
  set pagination(pagination) {
2267
- console.log('pagination', pagination);
2268
2267
  this._pagination = pagination;
2269
2268
  }
2270
2269
  get pagination() {
2271
- console.log('get pagination');
2272
2270
  return this._pagination;
2273
2271
  }
2274
2272
  decrementPage() {
@@ -3341,6 +3339,7 @@ class ImagesViewComponent {
3341
3339
  this.selectImgSelected();
3342
3340
  this.length = this.isTotalRetrieved ? this.length : data.totalRecords;
3343
3341
  this.tableFilters.totalItems = this.isTotalRetrieved ? this.tableFilters.totalItems : data.totalRecords;
3342
+ console.log('this.tableFilters.totalItems 1', this.tableFilters.totalItems);
3344
3343
  this.tableFilters.itemsPerPage = this.tableFilters.itemsPerPage ? this.tableFilters.itemsPerPage : this.pageSize;
3345
3344
  // Display Pexels if no result
3346
3345
  if (data.totalRecords === 0) {
@@ -3367,6 +3366,7 @@ class ImagesViewComponent {
3367
3366
  this.isTotalRetrieved = true;
3368
3367
  this.length = total;
3369
3368
  this.tableFilters.totalItems = total;
3369
+ console.log('this.tableFilters.totalItems 1', this.tableFilters.totalItems);
3370
3370
  },
3371
3371
  error: error => {
3372
3372
  //this.alertService.openAlert(this.errorGetTotalImg);