@sumaris-net/ngx-components 2.4.21 → 2.4.22

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.
@@ -6522,9 +6522,9 @@ class MatDateTime {
6522
6522
  .subscribe((_) => this.onFormChange()));
6523
6523
  // Listen status changes (when done outside the component - e.g. when setErrors() is calling on the formControl)
6524
6524
  this._subscription.add(this.formControl.statusChanges
6525
- .pipe(filter((_) => !this.readonly && !this._writing && !this._disabling) // Skip
6525
+ .pipe(filter((_) => !this._readonly && !this._writing && !this._disabling) // Skip
6526
6526
  )
6527
- .subscribe(() => this.markForCheck()));
6527
+ .subscribe((_) => this.markForCheck()));
6528
6528
  this._writing = false;
6529
6529
  }
6530
6530
  ngAfterViewInit() {