mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 01:33:05 +00:00
fix: The local file node of the knowledge base workflow supports MD format (#4487)
This commit is contained in:
parent
5a8b9105ea
commit
11a894f871
|
|
@ -93,9 +93,9 @@ import { set } from 'lodash'
|
|||
const NodeFormRef = ref()
|
||||
const props = defineProps<{ nodeModel: any }>()
|
||||
|
||||
const file_type_list_options = ['TXT', 'DOCX', 'PDF', 'HTML', 'XLS', 'XLSX', 'ZIP', 'CSV']
|
||||
const file_type_list_options = ['TXT', 'DOCX', 'PDF', 'HTML', 'XLS', 'XLSX', 'ZIP', 'CSV', 'MD']
|
||||
const form = {
|
||||
file_type_list: ['TXT', 'DOCX', 'PDF', 'HTML', 'XLS', 'XLSX', 'ZIP', 'CSV'],
|
||||
file_type_list: ['TXT', 'DOCX', 'PDF', 'HTML', 'XLS', 'XLSX', 'ZIP', 'CSV', 'MD'],
|
||||
file_size_limit: 100,
|
||||
file_count_limit: 50,
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue