Fix Bug 49783

This commit is contained in:
Julia Radzhabova 2021-04-21 22:09:36 +03:00
parent 0f90b7da83
commit 0cff183c31

View file

@ -99,6 +99,7 @@ define([
type: 'password', type: 'password',
allowBlank : false, allowBlank : false,
style : 'width: 100%;', style : 'width: 100%;',
maxLength: 255,
validateOnBlur: false validateOnBlur: false
}); });
this.repeatPwd = new Common.UI.InputField({ this.repeatPwd = new Common.UI.InputField({
@ -106,6 +107,7 @@ define([
type: 'password', type: 'password',
allowBlank : false, allowBlank : false,
style : 'width: 100%;', style : 'width: 100%;',
maxLength: 255,
validateOnBlur: false, validateOnBlur: false,
validation : function(value) { validation : function(value) {
return me.txtIncorrectPwd; return me.txtIncorrectPwd;