@sumaris-net/ngx-components 2.4.109 → 2.4.110

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.
@@ -24439,8 +24439,8 @@ class LocalSettingsValidatorService extends AppValidatorService {
24439
24439
  }
24440
24440
  getPropertyFormGroup(data) {
24441
24441
  return this.formBuilder.group({
24442
- key: [data && data.key || null, Validators.compose([Validators.required, Validators.max(50)])],
24443
- value: [data && data.value || null, Validators.compose([Validators.required, Validators.max(100)])]
24442
+ key: [data && data.key || null, Validators.compose([Validators.required, Validators.maxLength(50)])],
24443
+ value: [data && data.value || null, Validators.compose([Validators.required, Validators.maxLength(100)])]
24444
24444
  });
24445
24445
  }
24446
24446
  /* -- protected methods -- */