Update Utilities.js

This commit is contained in:
Vignesh S 2019-10-29 20:03:08 +05:30 committed by GitHub
parent 6c3df6725b
commit 86caf021fa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -304,7 +304,7 @@ class Utilities {
let options = this.getOptions();
let maxLength = options.maxLength;
let currentInput = inputObj[options.inputName];
let condition = currentInput.length === maxLength;
let condition = currentInput.length >= maxLength;
if (
/**