From b81d0d6305030112e19a1ec2d868c8618bde7151 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Wed, 26 Jul 2023 19:54:33 +0300 Subject: [PATCH] FIx Bug 63482 --- .../forms/app/controller/ApplicationController.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/documenteditor/forms/app/controller/ApplicationController.js b/apps/documenteditor/forms/app/controller/ApplicationController.js index 887c4393f0..38258a0315 100644 --- a/apps/documenteditor/forms/app/controller/ApplicationController.js +++ b/apps/documenteditor/forms/app/controller/ApplicationController.js @@ -468,7 +468,7 @@ define([ this.appOptions.fileChoiceUrl = this.editorConfig.fileChoiceUrl; this.appOptions.saveAsUrl = this.editorConfig.saveAsUrl; this.appOptions.canRequestSaveAs = this.editorConfig.canRequestSaveAs; - this.appOptions.isDesktopApp = this.editorConfig.targetApp == 'desktop'; + this.appOptions.isDesktopApp = this.editorConfig.targetApp == 'desktop' || Common.Controllers.Desktop.isActive(); this.appOptions.lang = this.editorConfig.lang; this.appOptions.canPlugins = false;