From 83447fff62db71244235f5fedda3e06fc94e2620 Mon Sep 17 00:00:00 2001 From: "Yoan.liu" Date: Thu, 13 Mar 2025 17:22:34 +0800 Subject: [PATCH] fix the issue where content is not fully displayed when there are too many branches. --- ui/src/components/workflow/WorkflowElements.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/components/workflow/WorkflowElements.tsx b/ui/src/components/workflow/WorkflowElements.tsx index c66748f4..5d2f82e1 100644 --- a/ui/src/components/workflow/WorkflowElements.tsx +++ b/ui/src/components/workflow/WorkflowElements.tsx @@ -31,7 +31,7 @@ const WorkflowElements = ({ className, style, disabled }: WorkflowElementsProps) return (
-
{elements}
+
{elements}
); };