From df674e1138a82d555932ace5333357dc7831b69c Mon Sep 17 00:00:00 2001 From: SergeyEzhin Date: Wed, 17 Nov 2021 14:10:01 +0400 Subject: [PATCH] [SSE mobile] Fix Bug 53686 --- apps/spreadsheeteditor/mobile/src/view/CellEditor.jsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/apps/spreadsheeteditor/mobile/src/view/CellEditor.jsx b/apps/spreadsheeteditor/mobile/src/view/CellEditor.jsx index b95013fd1..64e6bd957 100644 --- a/apps/spreadsheeteditor/mobile/src/view/CellEditor.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/CellEditor.jsx @@ -87,6 +87,8 @@ const CellEditorView = props => { const isPhone = Device.isPhone; const storeAppOptions = props.storeAppOptions; const storeFunctions = props.storeFunctions; + const storeWorksheets = props.storeWorksheets; + const wsLock = storeWorksheets.wsLock; const {functionsDisable} = props.storeFocusObjects; const functions = storeFunctions.functions; const isEdit = storeAppOptions.isEdit; @@ -101,7 +103,7 @@ const CellEditorView = props => { @@ -155,4 +157,4 @@ const routes = [ ]; -export default inject("storeAppOptions", "storeFunctions", "storeFocusObjects")(observer(CellEditorView)); +export default inject("storeAppOptions", "storeFunctions", "storeFocusObjects", "storeWorksheets")(observer(CellEditorView));