ps-toolkit-ui 1.22.31 → 1.22.32

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.
@@ -4822,7 +4822,7 @@
4822
4822
  this.table.rows.forEach(function (x) { return x.checked = true; });
4823
4823
  }
4824
4824
  if (this.table.onChangeCheck) {
4825
- this.table.onChangeCheck(this.table.rows.filter(function (x) { return x.checked = true; }));
4825
+ this.table.onChangeCheck(this.table.rows.filter(function (x) { return x.checked === true; }));
4826
4826
  }
4827
4827
  };
4828
4828
  TableComponent.prototype.getOptions = function () {