Feat: Add description for tag parsing method #4368 (#4402)

### What problem does this PR solve?

Feat: Add description for tag parsing method #4368

### Type of change


- [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
balibabu
2025-01-07 19:33:53 +08:00
committed by GitHub
parent d9a4e4cc3b
commit 49cebd9fec
8 changed files with 244 additions and 18 deletions

View File

@ -1,9 +1,10 @@
import { EditableCell, EditableRow } from '@/components/editable-cell';
import { useTranslate } from '@/hooks/common-hooks';
import { RAGFlowNodeType } from '@/interfaces/database/flow';
import { DeleteOutlined } from '@ant-design/icons';
import { Button, Flex, Select, Table, TableProps } from 'antd';
import { useBuildComponentIdSelectOptions } from '../../hooks/use-get-begin-query';
import { IGenerateParameter, RAGFlowNodeType } from '../../interface';
import { IGenerateParameter } from '../../interface';
import { useHandleOperateParameters } from './hooks';
import styles from './index.less';
@ -46,7 +47,7 @@ const DynamicParameters = ({ node }: IProps) => {
}),
},
{
title: t('componentId'),
title: t('value'),
dataIndex: 'component_id',
key: 'component_id',
align: 'center',