diff --git a/apps/spreadsheeteditor/mobile/src/view/CellEditor.jsx b/apps/spreadsheeteditor/mobile/src/view/CellEditor.jsx
index 737e653d6..ed5e50f7e 100644
--- a/apps/spreadsheeteditor/mobile/src/view/CellEditor.jsx
+++ b/apps/spreadsheeteditor/mobile/src/view/CellEditor.jsx
@@ -42,45 +42,41 @@ const FunctionsList = props => {
const funcArr = props.funcArr;
return (
- ${functionInfo.descr}
- {funcArr.map((elem, index) => {
- return (
-
- ${functionInfo.caption} ${functionInfo.args}
${functionInfo.descr}
`, + buttons: [ + {text: t('View.Add.textCancel')}, + { + text: t('View.Add.textInsert'), + onClick: () => props.insertFormula(elem.name, elem.type) + } + ] + }).open(); + } else { + f7.views.current.router.navigate('/function-info/', {props: {functionInfo, functionObj: elem, insertFormula: props.insertFormula}}); + } + } + }}> +