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
+1 -1
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 (
/**