1
0
Fork 0
mirror of synced 2024-06-29 11:31:06 +12:00

fix: no fields required by default

This commit is contained in:
Michael Shanks 2020-10-11 20:42:30 +01:00
parent 2585c30022
commit 84fcea8a80

View file

@ -15,7 +15,7 @@ export const FIELDS = {
type: "options",
constraints: {
type: "string",
presence: { allowEmpty: true },
presence: false,
inclusion: [],
},
},
@ -67,7 +67,7 @@ export const FIELDS = {
type: "link",
constraints: {
type: "array",
presence: { allowEmpty: true },
presence: false,
},
},
}