[DE SSE mobile] Fix Bug 59034

This commit is contained in:
SergeyEzhin 2022-09-23 23:05:33 +03:00
parent 8b1bf6f3b6
commit 9f37a4c70d

View file

@ -116,7 +116,12 @@ class SearchView extends Component {
expandable: true,
backdrop: false,
on: {
search: (bar, curval, prevval) => {
search: (sb, query, previousQuery) => {
const api = Common.EditorApi.get();
if(!query) {
api.asc_selectSearchingResults(false);
}
},
}
});