@sumaris-net/ngx-components 1.23.4 → 1.23.5

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.
@@ -26104,9 +26104,9 @@
26104
26104
  _b.sent();
26105
26105
  rowNotDeleted = this.getRows().filter(rows.includes);
26106
26106
  if (isNotEmptyArray(rowNotDeleted)) {
26107
- console.warn("[table-datasource] Force deletion of " + rowNotDeleted.length + " rows (Is service update the cache ?)");
26107
+ console.warn("[table-datasource] Force deletion of " + rowNotDeleted.length + " rows! Please check that data service update the cache, after deletion");
26108
26108
  rowNotDeleted
26109
- // Start from the end
26109
+ // Start at the end
26110
26110
  .sort(function (a, b) { return a.id > b.id ? -1 : 1; })
26111
26111
  .forEach(function (r) { return _super.delete.call(_this, r.id); });
26112
26112
  }