@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
|
@@ -25687,6 +25687,8 @@
|
|
|
25687
25687
|
case 1:
|
|
25688
25688
|
_e.sent();
|
|
25689
25689
|
row = this.dataSource.getRow(id);
|
|
25690
|
+
if (!row)
|
|
25691
|
+
return [2 /*return*/, false];
|
|
25690
25692
|
return [2 /*return*/, this.clickRow(null, row)];
|
|
25691
25693
|
}
|
|
25692
25694
|
});
|
|
@@ -25712,7 +25714,9 @@
|
|
|
25712
25714
|
case 2:
|
|
25713
25715
|
row = ((_e.sent()) || [])
|
|
25714
25716
|
.find(function (row) { return _this.equals(row.currentData, data); });
|
|
25715
|
-
|
|
25717
|
+
if (!row)
|
|
25718
|
+
return [2 /*return*/, false];
|
|
25719
|
+
return [2 /*return*/, this.clickRow(null, row)];
|
|
25716
25720
|
}
|
|
25717
25721
|
});
|
|
25718
25722
|
});
|