From 55319c7a896591f9836ff80104703baac5ef833a Mon Sep 17 00:00:00 2001 From: shaohuzhang1 <80892890+shaohuzhang1@users.noreply.github.com> Date: Wed, 17 Dec 2025 10:44:47 +0800 Subject: [PATCH] fix: In the workflow knowledge base, the specified reply node failed to parse the global variable input #4524 (#4528) --- ui/src/workflow/nodes/knowledge-base-node/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/workflow/nodes/knowledge-base-node/index.vue b/ui/src/workflow/nodes/knowledge-base-node/index.vue index a72670767..1f0e9cc5f 100644 --- a/ui/src/workflow/nodes/knowledge-base-node/index.vue +++ b/ui/src/workflow/nodes/knowledge-base-node/index.vue @@ -51,7 +51,7 @@ const nodeFields = computed(() => { const fields = props.nodeModel.properties.user_input_field_list.map((item: any) => ({ label: typeof item.label == 'string' ? item.label : item.label.label, value: item.field, - globeLabel: `{{global.${typeof item.label == 'string' ? item.label : item.label.label}}}`, + globeLabel: `{{global.${item.field}}}`, globeValue: `{{context['global'].${item.field}}}`, })) set(props.nodeModel.properties.config, 'globalFields', fields)