From 0b379ba8bc3333473b753ec3d117f0a48e4e244b Mon Sep 17 00:00:00 2001 From: Dmitry-Ilyushechkin Date: Fri, 16 Jan 2026 19:22:44 +0300 Subject: [PATCH] fix bug 72709 --- apps/common/mobile/lib/view/Search.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/common/mobile/lib/view/Search.jsx b/apps/common/mobile/lib/view/Search.jsx index 9f85c1726a..4c3bc3506d 100644 --- a/apps/common/mobile/lib/view/Search.jsx +++ b/apps/common/mobile/lib/view/Search.jsx @@ -90,7 +90,7 @@ class SearchView extends Component { componentDidMount() { this.$replace = $$('#idx-replace-val'); - const $editor = $$('#editor_sdk'); + const $editor = $$('#id_viewer_overlay, #ws-canvas-graphic-overlay'); this.onEditorTouchStart = this.onEditorTouchStart.bind(this); this.onEditorTouchEnd = this.onEditorTouchEnd.bind(this); @@ -132,7 +132,7 @@ class SearchView extends Component { } componentWillUnmount() { - $$('#editor_sdk') + $$('#id_viewer_overlay, #ws-canvas-graphic-overlay') .off('pointerdown', this.onEditorTouchStart) .off('pointerup', this.onEditorTouchEnd);