Fix password dialog

This commit is contained in:
Julia Radzhabova 2021-05-04 13:30:14 +03:00
parent c8e5f8e086
commit dd0b1708f7

View file

@ -116,13 +116,12 @@ define([
} }
}, },
show: function() { getFocusedComponents: function() {
Common.UI.Window.prototype.show.apply(this, arguments); return [this.inputPwd, this.repeatPwd];
},
var me = this; getDefaultFocusableComponent: function () {
setTimeout(function(){ return this.inputPwd;
me.inputPwd.cmpEl.find('input').focus();
}, 500);
}, },
onPrimary: function(event) { onPrimary: function(event) {