@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
|
@@ -21473,7 +21473,7 @@ class AppTable {
|
|
|
21473
21473
|
.subscribe(value => this.onDirty.emit(value)));
|
|
21474
21474
|
// Propagate row dirty state to table
|
|
21475
21475
|
this.registerSubscription(this.onStartEditingRow
|
|
21476
|
-
.pipe(filter(row => row.validator && true), mergeMap(row => row.validator.valueChanges
|
|
21476
|
+
.pipe(filter(row => (row === null || row === void 0 ? void 0 : row.validator) && true), mergeMap(row => row.validator.valueChanges
|
|
21477
21477
|
.pipe(takeUntil(
|
|
21478
21478
|
// Stop if next another row, or destroying
|
|
21479
21479
|
combineLatest([
|