@esfaenza/es-table 11.2.22-beta14 → 11.2.22-beta15

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.
@@ -4831,7 +4831,7 @@
4831
4831
  }
4832
4832
  /** @ignore */
4833
4833
  TablePagerComponent.prototype.ngOnInit = function () {
4834
- this.Model = this.View ? this.View.itemsperpageoverride : this.CurrentPageSize;
4834
+ this.Model = this.View ? (this.View.itemsperpageoverride || 15) : this.CurrentPageSize;
4835
4835
  if (this.AllSearch)
4836
4836
  this.PagingOptions.push(this.DefaultAll);
4837
4837
  };