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}