fix(web): change http body key name

This commit is contained in:
zhaoying
2026-04-14 15:08:07 +08:00
parent 2d9986f902
commit b5ec5c2cea
2 changed files with 5 additions and 5 deletions

View File

@@ -85,9 +85,9 @@ const EditableTable: FC<EditableTableProps> = ({
return [
{
title: t('workflow.config.name'),
dataIndex: 'name',
dataIndex: 'key',
render: (_: any, __: TableRow, index: number) => (
<Form.Item name={[index, 'name']} className={formClassName}>
<Form.Item name={[index, 'key']} className={formClassName}>
<Editor
options={namefilterOptions}
type="input"