From 029b39ae802732970785419abffa0ef99a6cdd99 Mon Sep 17 00:00:00 2001 From: wangdan-fit2cloud Date: Mon, 17 Jun 2024 12:35:27 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=20=E5=B7=A5=E4=BD=9C=E7=BC=96=E6=8E=92?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ui/src/workflow/common/app-node.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/workflow/common/app-node.ts b/ui/src/workflow/common/app-node.ts index 9769f44a5..06c04d7df 100644 --- a/ui/src/workflow/common/app-node.ts +++ b/ui/src/workflow/common/app-node.ts @@ -41,7 +41,7 @@ class AppNode extends HtmlNode { if (props.model.properties?.fields?.length > 0) { props.model.properties.fields.map((item: any) => { item['globeLabel'] = `{{${props.model.properties.stepName}.${item.value}}}` - item['globeValue'] = `{{content[${props.model.id}].${item.value}}}` + item['globeValue'] = `{{context['${props.model.id}'].${item.value}}}` }) } }