From db0ed2662b5b94417a28d8c2bac7e8e624e52600 Mon Sep 17 00:00:00 2001 From: shaohuzhang1 <80892890+shaohuzhang1@users.noreply.github.com> Date: Wed, 24 Sep 2025 17:37:45 +0800 Subject: [PATCH] style: Highly optimized when adding BREAK and Continue nodes (#4102) --- ui/src/workflow/common/data.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/src/workflow/common/data.ts b/ui/src/workflow/common/data.ts index 3e944898c..dabdf3b32 100644 --- a/ui/src/workflow/common/data.ts +++ b/ui/src/workflow/common/data.ts @@ -478,7 +478,7 @@ export const loopContinueNode = { type: WorkflowType.LoopContinueNode, text: t('views.applicationWorkflow.nodes.loopContinueNode.text'), label: t('views.applicationWorkflow.nodes.loopContinueNode.label'), - height: 600, + height: 100, properties: { width: 600, stepName: t('views.applicationWorkflow.nodes.loopContinueNode.label'), @@ -510,7 +510,7 @@ export const loopBreakNode = { type: WorkflowType.LoopBreakNode, text: t('views.applicationWorkflow.nodes.loopBreakNode.text'), label: t('views.applicationWorkflow.nodes.loopBreakNode.label'), - height: 600, + height: 100, properties: { width: 600, stepName: t('views.applicationWorkflow.nodes.loopBreakNode.label'),