@quadrel-enterprise-ui/framework 20.20.0 → 20.20.1
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.
|
@@ -34053,10 +34053,10 @@ class QdPageTabComponent extends CdkStep {
|
|
|
34053
34053
|
if (control.errors && control.touched)
|
|
34054
34054
|
return true;
|
|
34055
34055
|
if (control instanceof FormGroup) {
|
|
34056
|
-
return Object.values(control.controls).some(this.hasAnyError);
|
|
34056
|
+
return Object.values(control.controls).some(control => this.hasAnyError(control));
|
|
34057
34057
|
}
|
|
34058
34058
|
if (control instanceof FormArray) {
|
|
34059
|
-
return control.controls.some(this.hasAnyError);
|
|
34059
|
+
return control.controls.some(control => this.hasAnyError(control));
|
|
34060
34060
|
}
|
|
34061
34061
|
return false;
|
|
34062
34062
|
}
|