From e9985f0696d7f84fae296d8f417b385ee65f76b0 Mon Sep 17 00:00:00 2001 From: Joel Date: Mon, 1 Apr 2024 12:29:44 +0800 Subject: [PATCH] chore: enchance debug show name --- web/app/components/workflow/nodes/llm/use-config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/app/components/workflow/nodes/llm/use-config.ts b/web/app/components/workflow/nodes/llm/use-config.ts index 0748927de3..90cf1d866c 100644 --- a/web/app/components/workflow/nodes/llm/use-config.ts +++ b/web/app/components/workflow/nodes/llm/use-config.ts @@ -286,7 +286,7 @@ const useConfig = (id: string, payload: LLMNodeType) => { variable[0] = varInfo?.title || availableNodes[0]?.data.title // default start node title return { - variable: variable.join('/'), + variable: `${variable[0]}/${variable[variable.length - 1]}`, value_selector: item, } })