fix: Fix RAG pipeline identifier name dash format

This commit is contained in:
twwu 2025-09-09 18:40:32 +08:00
parent c79de5d68e
commit 2d6330f9b3
1 changed files with 1 additions and 1 deletions

View File

@ -257,7 +257,7 @@ const DocumentList: FC<IDocumentListProps> = ({
}, [])
const isCreateFromRAGPipeline = useCallback((createdFrom: string) => {
return createdFrom === 'rag_pipeline'
return createdFrom === 'rag-pipeline'
}, [])
/**