Skip to content

Commit 03037b0

Browse files
claudekittyyueli
authored andcommitted
fix(apollo-react): separate warning styles from paused styles in stage components
Remove yellow border for Warning status on StageContainer, StageTask, and execution status borders. Warning now only shows the icon, while Paused retains the yellow border and pulse animation. https://claude.ai/code/session_01L8FQaVQLtdZSxJWAe4eBP3
1 parent 2cb4e2f commit 03037b0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

packages/apollo-react/src/canvas/components/StageNode/StageNode.styles.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ export const StageContainer = styled.div<{
4848
`}
4949
5050
${({ status }) =>
51-
(status === 'Paused' || status === 'Warning') &&
51+
status === 'Paused' &&
5252
css`
5353
border-color: var(--uix-canvas-warning-icon);
5454
`}
@@ -210,7 +210,7 @@ export const StageTask = styled.div<{
210210
`}
211211
212212
${({ status }) =>
213-
(status === 'Paused' || status === 'Warning') &&
213+
status === 'Paused' &&
214214
css`
215215
border-color: var(--uix-canvas-warning-icon);
216216
`}

0 commit comments

Comments
 (0)