chrv-components 1.10.38 → 1.10.40

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.
Binary file
@@ -2742,6 +2742,7 @@ class ChrDataTable {
2742
2742
  }
2743
2743
  set data(value) {
2744
2744
  this._data = value || [];
2745
+ this.currentPage = 1;
2745
2746
  }
2746
2747
  constructor(dataService, changeDetector) {
2747
2748
  this.dataService = dataService;
@@ -3021,6 +3022,7 @@ class ChrTableComponent {
3021
3022
  set data(value) {
3022
3023
  this._data = value || [];
3023
3024
  this.changeDetector.markForCheck();
3025
+ this.currentPage = 1;
3024
3026
  }
3025
3027
  constructor(_date, dataService, changeDetector) {
3026
3028
  this._date = _date;