@sumaris-net/ngx-components 1.6.12 → 1.6.13
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 +1 -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 +2 -2
- package/fesm2015/sumaris-net.ngx-components.js +1 -1
- package/fesm2015/sumaris-net.ngx-components.js.map +1 -1
- package/package.json +1 -1
|
@@ -24841,7 +24841,7 @@
|
|
|
24841
24841
|
.subscribe(function (value) { return _this.onDirty.emit(value); }));
|
|
24842
24842
|
// Propagate row dirty state to table
|
|
24843
24843
|
this.registerSubscription(this.onStartEditingRow
|
|
24844
|
-
.pipe(operators.filter(function (row) { return row.validator && true; }), operators.mergeMap(function (row) { return row.validator.valueChanges
|
|
24844
|
+
.pipe(operators.filter(function (row) { return (row === null || row === void 0 ? void 0 : row.validator) && true; }), operators.mergeMap(function (row) { return row.validator.valueChanges
|
|
24845
24845
|
.pipe(operators.takeUntil(
|
|
24846
24846
|
// Stop if next another row, or destroying
|
|
24847
24847
|
rxjs.combineLatest([
|