From 19fe02bce2b7c18a95fc64fb30eabc2d4eb2b896 Mon Sep 17 00:00:00 2001 From: SergeyEzhin Date: Fri, 22 Dec 2023 17:37:15 +0100 Subject: [PATCH] [PE SSE mobile] Correct app options --- apps/presentationeditor/mobile/src/store/appOptions.js | 2 +- apps/spreadsheeteditor/mobile/src/store/appOptions.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/presentationeditor/mobile/src/store/appOptions.js b/apps/presentationeditor/mobile/src/store/appOptions.js index 92d2a86007..e7401a8a7b 100644 --- a/apps/presentationeditor/mobile/src/store/appOptions.js +++ b/apps/presentationeditor/mobile/src/store/appOptions.js @@ -104,7 +104,7 @@ export class storeAppOptions { if (permissions.editCommentAuthorOnly===undefined && permissions.deleteCommentAuthorOnly===undefined) this.canEditComments = this.canDeleteComments = this.isOffline; } - this.isForm = !!window.isPDFForm; + // this.isForm = !!window.isPDFForm; this.canChat = this.canLicense && !this.isOffline && (permissions.chat !== false); this.canEditStyles = this.canLicense && this.canEdit; this.canPrint = (permissions.print !== false); diff --git a/apps/spreadsheeteditor/mobile/src/store/appOptions.js b/apps/spreadsheeteditor/mobile/src/store/appOptions.js index ed962c1615..4b26bde116 100644 --- a/apps/spreadsheeteditor/mobile/src/store/appOptions.js +++ b/apps/spreadsheeteditor/mobile/src/store/appOptions.js @@ -108,7 +108,7 @@ export class storeAppOptions { if (permissions.editCommentAuthorOnly===undefined && permissions.deleteCommentAuthorOnly===undefined) this.canEditComments = this.canDeleteComments = this.isOffline; } - this.isForm = !!window.isPDFForm; + // this.isForm = !!window.isPDFForm; this.canChat = this.canLicense && !this.isOffline && (permissions.chat !== false); this.canPrint = (permissions.print !== false); this.isRestrictedEdit = !this.isEdit && this.canComments && isSupportEditFeature;