ps-toolkit-ui 1.8.68 → 1.8.69

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.
@@ -2831,7 +2831,10 @@
2831
2831
  _this.table.form.clear();
2832
2832
  }
2833
2833
  if (_this.table.permissions.Type === exports.PermissionTypeEnum.Form) {
2834
- _this.table.rows = _this.table.rows.filter(function (x) { return x.Id !== _this.row.Data.Id; });
2834
+ console.log(_this.row.Data.Id);
2835
+ console.log(_this.table.rows);
2836
+ _this.table.rows = _this.table.rows.filter(function (x) { return x.Data.Id !== _this.row.Data.Id; });
2837
+ console.log(_this.table.rows);
2835
2838
  _this.changeRows.emit(_this.row.Data);
2836
2839
  }
2837
2840
  else {