mirror of
https://github.com/ONLYOFFICE/web-apps.git
synced 2026-07-25 15:06:10 +08:00
[DE SSE] Fix Bug 53858
This commit is contained in:
@ -99,7 +99,8 @@ const Search = withTranslation()(props => {
|
||||
|
||||
if (params.find && params.find.length) {
|
||||
|
||||
api.asc_selectSearchingResults(true);
|
||||
if(params.highlight) api.asc_selectSearchingResults(true);
|
||||
|
||||
if (!api.asc_findText(params.find, params.forward, params.caseSensitive, params.highlight) ) {
|
||||
f7.dialog.alert(null, _t.textNoTextFound);
|
||||
}
|
||||
|
||||
@ -155,7 +155,7 @@ const Search = withTranslation()(props => {
|
||||
options.asc_setScanByRows(searchBy);
|
||||
options.asc_setLookIn(lookIn ? Asc.c_oAscFindLookIn.Formulas : Asc.c_oAscFindLookIn.Value);
|
||||
|
||||
api.asc_selectSearchingResults(true);
|
||||
if (params.highlight) api.asc_selectSearchingResults(true);
|
||||
|
||||
if (!api.asc_findText(options)) {
|
||||
f7.dialog.alert(null, _t.textNoTextFound);
|
||||
|
||||
Reference in New Issue
Block a user