= ({
) : (
- {children}
+
+ {children}
+
);
}
diff --git a/web/src/locales/en.ts b/web/src/locales/en.ts
index a5720766b..c1ae7a44e 100644
--- a/web/src/locales/en.ts
+++ b/web/src/locales/en.ts
@@ -783,7 +783,7 @@ The above is the content you need to summarize.`,
'15d': '12 days',
'30d': '30 days',
},
- publish: 'Publish',
+ publish: 'API',
},
footer: {
profile: 'All rights reserved @ React',
diff --git a/web/src/locales/zh-traditional.ts b/web/src/locales/zh-traditional.ts
index 8ddb7cd25..8a160a423 100644
--- a/web/src/locales/zh-traditional.ts
+++ b/web/src/locales/zh-traditional.ts
@@ -741,7 +741,7 @@ export default {
'15d': '12天',
'30d': '30天',
},
- publish: '發布',
+ publish: 'API',
},
footer: {
profile: '“保留所有權利 @ react”',
diff --git a/web/src/locales/zh.ts b/web/src/locales/zh.ts
index b9a91c774..ec2a8f026 100644
--- a/web/src/locales/zh.ts
+++ b/web/src/locales/zh.ts
@@ -759,7 +759,7 @@ export default {
'15d': '12天',
'30d': '30天',
},
- publish: '发布',
+ publish: 'API',
},
footer: {
profile: 'All rights reserved @ React',
diff --git a/web/src/pages/flow/generate-form/dynamic-parameters.tsx b/web/src/pages/flow/generate-form/dynamic-parameters.tsx
index c7f441c07..429263f6a 100644
--- a/web/src/pages/flow/generate-form/dynamic-parameters.tsx
+++ b/web/src/pages/flow/generate-form/dynamic-parameters.tsx
@@ -38,6 +38,7 @@ const DynamicParameters = ({ nodeId }: IProps) => {
title: t('key'),
dataIndex: 'key',
key: 'key',
+ width: 50,
onCell: (record: IGenerateParameter) => ({
record,
editable: true,
@@ -69,6 +70,7 @@ const DynamicParameters = ({ nodeId }: IProps) => {
width: 20,
key: 'operation',
align: 'center',
+ fixed: 'right',
render(_, record) {
return ;
},
@@ -89,6 +91,7 @@ const DynamicParameters = ({ nodeId }: IProps) => {
className={styles.variableTable}
components={components}
rowClassName={() => styles.editableRow}
+ scroll={{ x: true }}
/>
);