[SSE mobile] Fix Bug 55861
This commit is contained in:
parent
b58b501303
commit
6bec944f6f
|
@ -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 (
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue