From 67b37a6927215f845e88fe3011bcffdf2eb7ebbe Mon Sep 17 00:00:00 2001 From: SergeyEzhin Date: Thu, 15 Feb 2024 16:15:57 +0100 Subject: [PATCH] [DE mobile] Fix Bug 66293 --- apps/documenteditor/mobile/src/controller/Main.jsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/apps/documenteditor/mobile/src/controller/Main.jsx b/apps/documenteditor/mobile/src/controller/Main.jsx index 0cd9ec78c0..47730aeee7 100644 --- a/apps/documenteditor/mobile/src/controller/Main.jsx +++ b/apps/documenteditor/mobile/src/controller/Main.jsx @@ -241,7 +241,6 @@ class MainController extends Component { const { t } = this.props; const appOptions = this.props.storeAppOptions; - const isForm = appOptions.isForm; const isOForm = appOptions.isOForm; const appSettings = this.props.storeApplicationSettings; @@ -276,7 +275,7 @@ class MainController extends Component { value = LocalStorage.getBool('mobile-view', true); - if(value && !isForm) { + if(value) { this.api.ChangeReaderMode(); } else { appOptions.changeMobileView();