@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.
- package/bundles/sumaris-net.ngx-components.umd.js +3 -1
- package/bundles/sumaris-net.ngx-components.umd.js.map +1 -1
- package/bundles/sumaris-net.ngx-components.umd.min.js +1 -1
- package/bundles/sumaris-net.ngx-components.umd.min.js.map +1 -1
- package/esm2015/src/app/core/table/entities-table-datasource.class.js +5 -3
- package/fesm2015/sumaris-net.ngx-components.js +3 -1
- package/fesm2015/sumaris-net.ngx-components.js.map +1 -1
- package/package.json +1 -1
|
@@ -26130,7 +26130,9 @@
|
|
|
26130
26130
|
case 2:
|
|
26131
26131
|
// Call service deletion
|
|
26132
26132
|
_b.sent();
|
|
26133
|
-
rowNotDeleted = this.getRows()
|
|
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 ?)");
|