Skip to content

Commit

Permalink
fix: iteration node bg color (langgenius#6523)
Browse files Browse the repository at this point in the history
  • Loading branch information
zxhlyh authored Jul 22, 2024
1 parent 5e6fc58 commit 8759400
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/app/components/workflow/nodes/_base/node.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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]',
Expand Down

0 comments on commit 8759400

Please sign in to comment.