jjv
jjv copied to clipboard
Validation for fields with null values failing even they are not listed as required.
Suggestion: in line 358 replace if (!env.fieldTypeschema.type) with if (prop !== null && typeof(prop) !== "undefined" && !env.fieldTypeschema.type)