Merge pull request #4077 from mslourens/maxlength_validation
fix schema constraint mapping to validation rule
This commit is contained in:
commit
a2ab721dd5
|
@ -37,7 +37,7 @@ export const createValidatorFromConstraints = (
|
|||
const length = schemaConstraints.length.maximum
|
||||
rules.push({
|
||||
type: "string",
|
||||
constraint: "length",
|
||||
constraint: "maxLength",
|
||||
value: length,
|
||||
error: `Maximum length is ${length}`,
|
||||
})
|
||||
|
|
Loading…
Reference in New Issue