only validates fields if they are not localized on backend

This commit is contained in:
James
2020-06-04 19:54:32 -04:00
parent 7e19ce6cb9
commit dc2943c5eb
3 changed files with 5 additions and 4 deletions

View File

@@ -23,7 +23,7 @@ exports.iterateFields = async (data, fields, path = '') => {
const dataToValidate = data || {};
if (field.required || requiresAtLeastOneSubfield) {
if ((field.required && !field.localized) || requiresAtLeastOneSubfield) {
// If this field does not have a name, it is for
// admin panel composition only and should not be
// validated against directly

View File

@@ -19,15 +19,15 @@ const optionsToValidatorMap = {
return true;
},
text: (value, options = {}) => {
if (options.maxLength && value.length > options.maxLength) {
if (options.maxLength && (value && value.length > options.maxLength)) {
return `This value must be shorter than the max length of ${options.max} characters.`;
}
if (options.minLength && value.length < options.minLength) {
if (options.minLength && (value && value.length < options.minLength)) {
return `This value must be longer than the minimum length of ${options.max} characters.`;
}
if (typeof value !== 'string' || value.length === 0) {
if (typeof value !== 'string' || (typeof value === 'string' && value.length === 0)) {
return 'This field is required.';
}