瀏覽代碼

fix: iteration node bg color (#6523)

zxhlyh 9 月之前
父節點
當前提交
87594008f8
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      web/app/components/workflow/nodes/_base/node.tsx

+ 1 - 1
web/app/components/workflow/nodes/_base/node.tsx

@@ -92,7 +92,7 @@ const BaseNode: FC<BaseNodeProps> = ({
           '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]',