Procházet zdrojové kódy

feat: translate graph of header #918 (#1428)

### What problem does this PR solve?

feat: translate graph of header #918
### Type of change


- [x] New Feature (non-breaking change which adds functionality)
tags/v0.8.0
balibabu před 1 rokem
rodič
revize
59417016a8
Žádný účet není propojen s e-mailovou adresou tvůrce revize

+ 1
- 0
web/src/locales/zh-traditional.ts Zobrazit soubor

@@ -57,6 +57,7 @@ export default {
setting: '用戶設置',
logout: '登出',
fileManager: '文件管理',
flow: '圖',
},
knowledgeList: {
welcome: '歡迎回來',

+ 1
- 0
web/src/locales/zh.ts Zobrazit soubor

@@ -57,6 +57,7 @@ export default {
setting: '用户设置',
logout: '登出',
fileManager: '文件管理',
flow: '图',
},
knowledgeList: {
welcome: '欢迎回来',

+ 3
- 3
web/src/pages/flow/categorize-form/dynamic-categorize.tsx Zobrazit soubor

@@ -1,6 +1,6 @@
import { useTranslate } from '@/hooks/commonHooks';
import { CloseOutlined } from '@ant-design/icons';
import { Button, Card, Form, Input, Select, Typography } from 'antd';
import { Button, Card, Form, Input, Select } from 'antd';
import { useUpdateNodeInternals } from 'reactflow';
import { Operator } from '../constant';
import {
@@ -95,13 +95,13 @@ const DynamicCategorize = ({ nodeId }: IProps) => {
}}
</Form.List>

<Form.Item noStyle shouldUpdate>
{/* <Form.Item noStyle shouldUpdate>
{() => (
<Typography>
<pre>{JSON.stringify(form.getFieldsValue(), null, 2)}</pre>
</Typography>
)}
</Form.Item>
</Form.Item> */}
</>
);
};

Načítá se…
Zrušit
Uložit