[SSE] Fix bug 57942

This commit is contained in:
JuliaSvinareva 2022-07-05 14:09:13 +03:00
parent b6bda16dad
commit 32a47d0866

View file

@ -320,7 +320,7 @@ define([
} else { } else {
!(found-replaced) && this.removeResultItems(); !(found-replaced) && this.removeResultItems();
Common.UI.info({ Common.UI.info({
msg: !(found-replaced) ? Common.Utils.String.format(this.textReplaceSuccess,replaced) : Common.Utils.String.format(this.textReplaceSkipped,found-replaced), msg: (!(found-replaced) || replaced > found) ? Common.Utils.String.format(this.textReplaceSuccess,replaced) : Common.Utils.String.format(this.textReplaceSkipped,found-replaced),
callback: function() { callback: function() {
me.view.focus(); me.view.focus();
} }