@firestitch/form 12.4.13 → 12.4.15

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.
@@ -1359,16 +1359,9 @@
1359
1359
  };
1360
1360
  FsControlDirective.prototype.ngAfterContentInit = function () {
1361
1361
  if (this._control) {
1362
- /*
1363
- Ensure that statusChanges has one subscription per control. Multiple can happen
1364
- when multiple fsForm validation directives are applied to the same element
1365
- */
1366
- if (!this._control.statusChangesSubscribe) {
1367
- this._control.statusChanges
1368
- .pipe(operators.takeUntil(this._destroy$))
1369
- .subscribe(this.render.bind(this));
1370
- this._control.statusChangesSubscribe = true;
1371
- }
1362
+ this._control.statusChanges
1363
+ .pipe(operators.takeUntil(this._destroy$))
1364
+ .subscribe(this.render.bind(this));
1372
1365
  }
1373
1366
  };
1374
1367
  FsControlDirective.prototype.getMessageSelector = function () {