From 87594008f80b31328ea4cfe316211e89124db11b Mon Sep 17 00:00:00 2001 From: zxhlyh Date: Mon, 22 Jul 2024 15:43:24 +0800 Subject: [PATCH] fix: iteration node bg color (#6523) --- web/app/components/workflow/nodes/_base/node.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/app/components/workflow/nodes/_base/node.tsx b/web/app/components/workflow/nodes/_base/node.tsx index 2cef91f1b16a00..0b45c808881c48 100644 --- a/web/app/components/workflow/nodes/_base/node.tsx +++ b/web/app/components/workflow/nodes/_base/node.tsx @@ -92,7 +92,7 @@ const BaseNode: FC = ({ 'group relative pb-1 shadow-xs', 'border border-transparent rounded-[15px]', data.type !== BlockEnum.Iteration && 'w-[240px] bg-workflow-block-bg', - data.type === BlockEnum.Iteration && 'flex flex-col w-full h-full bg-workflow-block-bg/80', + data.type === BlockEnum.Iteration && 'flex flex-col w-full h-full bg-[#fcfdff]/80', !data._runningStatus && 'hover:shadow-lg', showRunningBorder && '!border-primary-500', showSuccessBorder && '!border-[#12B76A]',