From 5cdc2382ca8d2a30af813501bcafd075462b14a9 Mon Sep 17 00:00:00 2001 From: shaohuzhang1 <80892890+shaohuzhang1@users.noreply.github.com> Date: Fri, 10 Oct 2025 13:55:16 +0800 Subject: [PATCH] fix: In workflow applications, the display of custom icons for sub applications and tools in the box below the variable selection is incorrect (#4168) --- ui/src/workflow/common/NodeCascader.vue | 9 ++++++--- ui/src/workflow/common/app-node.ts | 1 + 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/ui/src/workflow/common/NodeCascader.vue b/ui/src/workflow/common/NodeCascader.vue index 2127d7e91..dbfd64a31 100644 --- a/ui/src/workflow/common/NodeCascader.vue +++ b/ui/src/workflow/common/NodeCascader.vue @@ -10,9 +10,12 @@ > diff --git a/ui/src/workflow/common/app-node.ts b/ui/src/workflow/common/app-node.ts index e217d4b07..5354c93b0 100644 --- a/ui/src/workflow/common/app-node.ts +++ b/ui/src/workflow/common/app-node.ts @@ -75,6 +75,7 @@ class AppNode extends HtmlResize.view { } result.push({ value: this.props.model.id, + icon: this.props.model.properties.node_data?.icon, label: this.props.model.properties.stepName, type: this.props.model.type, children: this.props.model.properties?.config?.fields || [],