@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.
@@ -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([