mirror of
https://github.com/ONLYOFFICE/web-apps.git
synced 2026-07-27 02:21:17 +08:00
[SSE] Fix bug 57942
This commit is contained in:
@ -320,7 +320,7 @@ define([
|
||||
} else {
|
||||
!(found-replaced) && this.removeResultItems();
|
||||
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() {
|
||||
me.view.focus();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user