diff --git a/apps/spreadsheeteditor/mobile/src/view/add/AddFunction.jsx b/apps/spreadsheeteditor/mobile/src/view/add/AddFunction.jsx index cd5c2db48..82cc52a23 100644 --- a/apps/spreadsheeteditor/mobile/src/view/add/AddFunction.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/add/AddFunction.jsx @@ -26,6 +26,11 @@ const PageGroup = ({name, type, functions, onInsertFunction, f7router}) => { if (functions[k].group == type) items.push(functions[k]); } + + items.sort(function(a, b) { + return (a.caption.toLowerCase() > b.caption.toLowerCase()) ? 1 : -1; + }); + return ( @@ -88,6 +93,7 @@ const AddFunction = props => { name: name }) } + return (