Fix: When creating a dataset, if no chunk_method is selected, there is no indication that this is a required field. (#14039)

### What problem does this PR solve?
Fix: When creating a dataset, if no `chunk_method` is selected, there is
no indication that this is a required field.

### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)
This commit is contained in:
balibabu
2026-04-10 19:05:14 +08:00
committed by GitHub
parent 82d74fd276
commit 462be53b76
14 changed files with 93 additions and 205 deletions

View File

@@ -95,3 +95,8 @@ export enum DocumentParserType {
}
export const TagRenameId = 'tagRename';
export enum ParseType {
BuiltIn = 1,
Pipeline = 2,
}