From 6bec944f6f40b8728eb48840b2a55d02bc602a8f Mon Sep 17 00:00:00 2001 From: SergeyEzhin Date: Thu, 3 Mar 2022 21:21:54 +0400 Subject: [PATCH] [SSE mobile] Fix Bug 55861 --- apps/spreadsheeteditor/mobile/src/controller/CellEditor.jsx | 1 + apps/spreadsheeteditor/mobile/src/view/CellEditor.jsx | 3 --- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/apps/spreadsheeteditor/mobile/src/controller/CellEditor.jsx b/apps/spreadsheeteditor/mobile/src/controller/CellEditor.jsx index 3195e8a7e..7718d459a 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/CellEditor.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/CellEditor.jsx @@ -95,6 +95,7 @@ const CellEditor = props => { const insertFormula = (name, type) => { const api = Common.EditorApi.get(); api.asc_insertInCell(name, type, false); + f7.popover.close('#idx-functions-list'); } return ( diff --git a/apps/spreadsheeteditor/mobile/src/view/CellEditor.jsx b/apps/spreadsheeteditor/mobile/src/view/CellEditor.jsx index e7e337a54..cfd9d3ea6 100644 --- a/apps/spreadsheeteditor/mobile/src/view/CellEditor.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/CellEditor.jsx @@ -28,9 +28,6 @@ const FunctionInfo = props => {
- {/* {(functionInfo.caption && functionInfo.args) && -

{`${functionInfo.caption} ${functionInfo.args}`}

- } */}

{functionInfo.caption && functionInfo.args ? `${functionInfo.caption} ${functionInfo.args}` : functionInfo.name}

{functionInfo.descr || functionInfo.hint}