From c63d12b93678627f5d2abdf4c8ad1286ec584d8e Mon Sep 17 00:00:00 2001 From: balibabu Date: Fri, 25 Jul 2025 14:10:42 +0800 Subject: [PATCH] Feat: Keep the workflow page link unchanged #3221 (#9045) ### What problem does this PR solve? Feat: Keep the workflow page link unchanged #3221 ### Type of change - [x] New Feature (non-breaking change which adds functionality) --- web/src/layouts/components/header/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/layouts/components/header/index.tsx b/web/src/layouts/components/header/index.tsx index ffecfb770..87a6d3bdc 100644 --- a/web/src/layouts/components/header/index.tsx +++ b/web/src/layouts/components/header/index.tsx @@ -29,7 +29,7 @@ const RagHeader = () => { { path: '/knowledge', name: t('knowledgeBase'), icon: KnowledgeBaseIcon }, { path: '/chat', name: t('chat'), icon: MessageOutlined }, { path: '/search', name: t('search'), icon: SearchOutlined }, - { path: '/agent-list', name: t('flow'), icon: GraphIcon }, + { path: '/flow', name: t('flow'), icon: GraphIcon }, { path: '/file', name: t('fileManager'), icon: FileIcon }, ], [t],