mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-08 20:42:30 +08:00
### What problem does this PR solve? feat: change all file names to lowercase #1574 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
34 lines
771 B
TypeScript
34 lines
771 B
TypeScript
import { useTranslate } from '@/hooks/common-hooks';
|
|
import { Form, Input } from 'antd';
|
|
import { IOperatorForm } from '../interface';
|
|
|
|
type FieldType = {
|
|
prologue?: string;
|
|
};
|
|
|
|
const BeginForm = ({ onValuesChange, form }: IOperatorForm) => {
|
|
const { t } = useTranslate('chat');
|
|
|
|
return (
|
|
<Form
|
|
name="basic"
|
|
labelCol={{ span: 8 }}
|
|
wrapperCol={{ span: 16 }}
|
|
onValuesChange={onValuesChange}
|
|
autoComplete="off"
|
|
form={form}
|
|
>
|
|
<Form.Item<FieldType>
|
|
name={'prologue'}
|
|
label={t('setAnOpener')}
|
|
tooltip={t('setAnOpenerTip')}
|
|
initialValue={t('setAnOpenerInitial')}
|
|
>
|
|
<Input.TextArea autoSize={{ minRows: 5 }} />
|
|
</Form.Item>
|
|
</Form>
|
|
);
|
|
};
|
|
|
|
export default BeginForm;
|