Fixed validateMax bug.

This commit is contained in:
MattMo 2022-05-12 10:29:33 -07:00
parent 709cfb8b95
commit d8b4251cea

View File

@ -252,7 +252,7 @@ IgniteTemplate.prototype.validateMin = function (min, msg) {
*/ */
IgniteTemplate.prototype.validateMax = function (max, msg) { IgniteTemplate.prototype.validateMax = function (max, msg) {
return this.validate((value, error) => { return this.validate((value, error) => {
if (!value || value.toString().trim().length > max) { if (value && value.toString().trim().length > max) {
return error(msg ? msg : `Input must contain less than ${max} character(s).`); return error(msg ? msg : `Input must contain less than ${max} character(s).`);
} }
}); });