@osovitny/anatoly 2.14.79 → 2.14.80

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.
@@ -2466,7 +2466,7 @@ class DatapagerComponent {
2466
2466
  if (this.pageSizeDivisor) {
2467
2467
  for (let i = 3; i < this.pageSizeMax; i++) {
2468
2468
  let remainder = i % this.pageSizeDivisor;
2469
- if (remainder > 0) {
2469
+ if (remainder == 0) {
2470
2470
  this.pageSizes.push(i);
2471
2471
  }
2472
2472
  }