@sumaris-net/ngx-components 2.4.154 → 2.4.155

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.
@@ -30381,7 +30381,8 @@ class AppEditor {
30381
30381
  }
30382
30382
  }
30383
30383
  setError(value, opts) {
30384
- if (this.errorSubject.value !== value) {
30384
+ // Compare using '!=' to detect null and undefined as same value
30385
+ if (this.errorSubject.value != value) {
30385
30386
  this.errorSubject.next(value);
30386
30387
  if (!opts || opts.emitEvent !== false)
30387
30388
  this.markForCheck();