[DE PE SSE] Fix bug 58187

This commit is contained in:
JuliaSvinareva 2022-07-19 20:15:53 +03:00
parent 6c10117086
commit 65e7054b54

View file

@ -91,6 +91,11 @@ define([
dataHintDirection: 'left',
dataHintOffset: 'small'
});
this.inputReplace._input.on('keydown', _.bind(function (e) {
if (e.keyCode === Common.UI.Keys.RETURN && !this.btnReplace.isDisabled()) {
this.onReplaceClick('replace');
}
}, this));
this.btnBack = new Common.UI.Button({
parentEl: $('#search-adv-back'),