@acorex/components 4.2.42 → 4.2.43

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.
@@ -5592,11 +5592,10 @@ class AXValidationFormComponent {
5592
5592
  });
5593
5593
  }
5594
5594
  validate() {
5595
- debugger;
5596
5595
  this.widgets.push(...this.widgetsQuery.toArray().filter(c => !this.widgets.includes(c)));
5597
5596
  //
5598
5597
  this.widgets.forEach(w => {
5599
- if (w?.validation.validateOn == null) {
5598
+ if (w.validation && w.validation.validateOn == null) {
5600
5599
  w.validation.validateOn = this.validateOn;
5601
5600
  }
5602
5601
  });