From 2d6330f9b332e616fdf1ea39064810d3d3de891e Mon Sep 17 00:00:00 2001 From: twwu Date: Tue, 9 Sep 2025 18:40:32 +0800 Subject: [PATCH] fix: Fix RAG pipeline identifier name dash format --- web/app/components/datasets/documents/list.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/app/components/datasets/documents/list.tsx b/web/app/components/datasets/documents/list.tsx index 60e4a02a75..f850e1870a 100644 --- a/web/app/components/datasets/documents/list.tsx +++ b/web/app/components/datasets/documents/list.tsx @@ -257,7 +257,7 @@ const DocumentList: FC = ({ }, []) const isCreateFromRAGPipeline = useCallback((createdFrom: string) => { - return createdFrom === 'rag_pipeline' + return createdFrom === 'rag-pipeline' }, []) /**