### What problem does this PR solve? feat: Configurable for excel, html table or row based text #2516 ### Type of change - [ ] Bug Fix (non-breaking change which fixes an issue) - [x] New Feature (non-breaking change which adds functionality) - [ ] Documentation Update - [ ] Refactoring - [ ] Performance Improvement - [ ] Other (please describe):
20 lines
439 B
TypeScript
20 lines
439 B
TypeScript
import { useTranslate } from '@/hooks/common-hooks';
|
|
import { Form, Switch } from 'antd';
|
|
|
|
const ExcelToHtml = () => {
|
|
const { t } = useTranslate('knowledgeDetails');
|
|
return (
|
|
<Form.Item
|
|
name={['parser_config', 'html4excel']}
|
|
label={t('html4excel')}
|
|
initialValue={false}
|
|
valuePropName="checked"
|
|
tooltip={t('html4excelTip')}
|
|
>
|
|
<Switch />
|
|
</Form.Item>
|
|
);
|
|
};
|
|
|
|
export default ExcelToHtml;
|