fix: Fix RAG pipeline identifier name dash format (#25438)

This commit is contained in:
Wu Tianwei 2025-09-09 18:43:34 +08:00 committed by GitHub
commit e1ecce8d27
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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'
}, [])
/**