mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-07-19 14:11:04 +08:00
### What problem does this PR solve? Fix: The files in the knowledge base folder on the file management page should not be deleted #9975 ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue)
8 lines
177 B
TypeScript
8 lines
177 B
TypeScript
export function isFolderType(type: string) {
|
|
return type === 'folder';
|
|
}
|
|
|
|
export function isKnowledgeBaseType(sourceType: string) {
|
|
return sourceType === 'knowledgebase';
|
|
}
|