Forráskód Böngészése

fix: agent node help link error in zh (#16194)

诗浓 1 hónapja
szülő
commit
0189a8b0f6

+ 2 - 1
web/app/components/workflow/nodes/_base/hooks/use-node-help-link.ts

@@ -6,7 +6,7 @@ export const useNodeHelpLink = (nodeType: BlockEnum) => {
   const language = useGetLanguage()
   const prefixLink = useMemo(() => {
     if (language === 'zh_Hans')
-      return 'https://docs.dify.ai/v/zh-hans/guides/workflow/node/'
+      return 'https://docs.dify.ai/zh-hans/guides/workflow/node/'
 
     return 'https://docs.dify.ai/guides/workflow/node/'
   }, [language])
@@ -34,6 +34,7 @@ export const useNodeHelpLink = (nodeType: BlockEnum) => {
         [BlockEnum.Tool]: 'tools',
         [BlockEnum.DocExtractor]: 'doc-extractor',
         [BlockEnum.ListFilter]: 'list-operator',
+        [BlockEnum.Agent]: 'agent',
       }
     }