[SSE mobile] Fix Bug 55861

This commit is contained in:
SergeyEzhin 2022-03-03 21:21:54 +04:00
parent b58b501303
commit 6bec944f6f
2 changed files with 1 additions and 3 deletions

View file

@ -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 (

View file

@ -28,9 +28,6 @@ const FunctionInfo = props => {
</NavRight>
</Navbar>
<div className='function-info'>
{/* {(functionInfo.caption && functionInfo.args) &&
<h3>{`${functionInfo.caption} ${functionInfo.args}`}</h3>
} */}
<h3>{functionInfo.caption && functionInfo.args ? `${functionInfo.caption} ${functionInfo.args}` : functionInfo.name}</h3>
<p>{functionInfo.descr || functionInfo.hint}</p>
</div>