@sumaris-net/ngx-components 2.4.109 → 2.4.111
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.
- package/esm2020/src/app/core/services/validator/local-settings.validator.mjs +3 -3
- package/fesm2015/sumaris-net.ngx-components.mjs +2 -2
- package/fesm2015/sumaris-net.ngx-components.mjs.map +1 -1
- package/fesm2020/sumaris-net.ngx-components.mjs +2 -2
- package/fesm2020/sumaris-net.ngx-components.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -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.
|
|
24443
|
-
value: [data && data.value || null, Validators.compose([Validators.required, Validators.
|
|
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(2000)])]
|
|
24444
24444
|
});
|
|
24445
24445
|
}
|
|
24446
24446
|
/* -- protected methods -- */
|