@sumaris-net/ngx-components 1.12.9 → 1.12.10
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 +5 -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/table.class.js +6 -2
- package/fesm2015/sumaris-net.ngx-components.js +5 -1
- package/fesm2015/sumaris-net.ngx-components.js.map +1 -1
- package/package.json +1 -1
|
@@ -22193,6 +22193,8 @@ class AppTable {
|
|
|
22193
22193
|
return false;
|
|
22194
22194
|
yield this.waitIdle();
|
|
22195
22195
|
const row = this.dataSource.getRow(id);
|
|
22196
|
+
if (!row)
|
|
22197
|
+
return false;
|
|
22196
22198
|
return this.clickRow(null, row);
|
|
22197
22199
|
});
|
|
22198
22200
|
}
|
|
@@ -22207,7 +22209,9 @@ class AppTable {
|
|
|
22207
22209
|
yield this.waitIdle();
|
|
22208
22210
|
const row = ((yield this.dataSource.getRows()) || [])
|
|
22209
22211
|
.find(row => this.equals(row.currentData, data));
|
|
22210
|
-
|
|
22212
|
+
if (!row)
|
|
22213
|
+
return false;
|
|
22214
|
+
return this.clickRow(null, row);
|
|
22211
22215
|
});
|
|
22212
22216
|
}
|
|
22213
22217
|
clickRow(event, row) {
|