Merge pull request #7218 from allenve/master

fix: 公式函数参数描述可能不存在的问题
This commit is contained in:
Allen 2023-06-20 10:01:58 +08:00 committed by GitHub
commit e20b52d66e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -102,45 +102,47 @@ export function FuncList(props: FuncListProps) {
<div className={cx('FormulaEditor-FuncList-doc', descClassName)}>
{activeFunc ? (
<>
<pre>
<TooltipWrapper
placement="top"
tooltip={{
children: () => (
<table
className={cx(
'FormulaEditor-FuncList-doc-example',
'Table-table'
)}
>
<thead>
<tr>
{['参数名称', '类型', '描述'].map(
(name, index) => (
<th key={index}>{name}</th>
{Array.isArray(activeFunc.params) ? (
<pre>
<TooltipWrapper
placement="top"
tooltip={{
children: () => (
<table
className={cx(
'FormulaEditor-FuncList-doc-example',
'Table-table'
)}
>
<thead>
<tr>
{['参数名称', '类型', '描述'].map(
(name, index) => (
<th key={index}>{name}</th>
)
)}
</tr>
</thead>
<tbody>
{activeFunc.params.map(
(param: any, index: number) => (
<tr key={index}>
<td>{param.name}</td>
<td>{param.type}</td>
<td>{param.description}</td>
</tr>
)
)}
</tr>
</thead>
<tbody>
{activeFunc.params.map(
(param: any, index: number) => (
<tr key={index}>
<td>{param.name}</td>
<td>{param.type}</td>
<td>{param.description}</td>
</tr>
)
)}
</tbody>
</table>
)
}}
trigger="hover"
>
<code>{activeFunc.example}</code>
</TooltipWrapper>
</pre>
</tbody>
</table>
)
}}
trigger="hover"
>
<code>{activeFunc.example}</code>
</TooltipWrapper>
</pre>
) : null}
<div className={cx('FormulaEditor-FuncList-doc-desc')}>
{activeFunc.description}
</div>