@fuentis/phoenix-ui 0.0.9-alpha.635 → 0.0.9-alpha.636

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.
@@ -4169,8 +4169,8 @@ class MetaFormAbstract {
4169
4169
  validators.push(Validators.min(control.validators.min));
4170
4170
  control.validators.max &&
4171
4171
  validators.push(Validators.max(control.validators.max));
4172
- control.validators.maxLenght &&
4173
- validators.push(Validators.maxLength(control.validators.maxLenght));
4172
+ control.validators.maxLength &&
4173
+ validators.push(Validators.maxLength(control.validators.maxLength));
4174
4174
  control.validators.minLength &&
4175
4175
  validators.push(Validators.minLength(control.validators.minLength));
4176
4176
  control.validators.email && validators.push(Validators.email);