We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59117a0 commit 4a8a209Copy full SHA for 4a8a209
ui/src/workflow/nodes/knowledge-base-node/index.vue
@@ -51,7 +51,7 @@ const nodeFields = computed(() => {
51
const fields = props.nodeModel.properties.user_input_field_list.map((item: any) => ({
52
label: typeof item.label == 'string' ? item.label : item.label.label,
53
value: item.field,
54
- globeLabel: `{{global.${typeof item.label == 'string' ? item.label : item.label.label}}}`,
+ globeLabel: `{{global.${item.field}}}`,
55
globeValue: `{{context['global'].${item.field}}}`,
56
}))
57
set(props.nodeModel.properties.config, 'globalFields', fields)
0 commit comments