@sumaris-net/ngx-components 2.1.4 → 2.1.5

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.
@@ -4640,11 +4640,11 @@ class AppFormArray extends UntypedFormArray {
4640
4640
  }
4641
4641
  }
4642
4642
  disable(opts) {
4643
- this.disable(opts);
4643
+ super.disable(opts);
4644
4644
  this.controls.forEach(c => c.disable(opts));
4645
4645
  }
4646
4646
  enable(opts) {
4647
- this.enable(opts);
4647
+ super.enable(opts);
4648
4648
  this.controls.forEach(c => c.enable(opts));
4649
4649
  }
4650
4650
  forEach(ite) {