@stemy/ngx-utils 13.6.8 → 13.6.9

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.
@@ -4708,7 +4708,7 @@ class PaginationDirective {
4708
4708
  }
4709
4709
  refresh(time) {
4710
4710
  time = isNaN(time) || time < 0 ? this.updateTime : time;
4711
- this.updateTimer.time = isNaN(time) || time < 0 ? 100 : this.updateTime;
4711
+ this.updateTimer.time = isNaN(time) || time < 0 ? 100 : time;
4712
4712
  this.waitFor.then(() => {
4713
4713
  this.updateTimer.run();
4714
4714
  });