Fixed validateMax bug.
This commit is contained in:
parent
709cfb8b95
commit
d8b4251cea
@ -252,7 +252,7 @@ IgniteTemplate.prototype.validateMin = function (min, msg) {
|
||||
*/
|
||||
IgniteTemplate.prototype.validateMax = function (max, msg) {
|
||||
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).`);
|
||||
}
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user