@sumaris-net/ngx-components 1.23.1-rc2 → 1.23.1-rc3

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.
@@ -26130,7 +26130,9 @@
26130
26130
  case 2:
26131
26131
  // Call service deletion
26132
26132
  _b.sent();
26133
- rowNotDeleted = this.getRows().map(function (row) { return rows.find(function (r) { return r === row; }); });
26133
+ rowNotDeleted = this.getRows()
26134
+ .map(function (row) { return rows.find(function (r) { return r === row; }); })
26135
+ .filter(isNotNil);
26134
26136
  // Apply missing deletion
26135
26137
  if (isNotEmptyArray(rowNotDeleted)) {
26136
26138
  console.warn("[table-datasource] Force deletion of " + rowNotDeleted.length + " rows (Is service update the cache ?)");