Skip to content

Commit

Permalink
Merge pull request openshift#11928 from vikram-raj/bz-2114488
Browse files Browse the repository at this point in the history
Bug 2114488: Fix Monitoring Alert decorator icon color in Topology
  • Loading branch information
openshift-ci[bot] authored Aug 6, 2022
2 parents d88908b + fe379a3 commit c3a6bd8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const AlertSeverityIcon: React.FC<AlertSeverityIconProps> = ({
<ExclamationCircleIcon
style={{
fontSize,
color: 'var(--pf-global--danger-color--100)',
fill: 'var(--pf-global--danger-color--100)',
}}
/>
);
Expand All @@ -27,7 +27,7 @@ const AlertSeverityIcon: React.FC<AlertSeverityIconProps> = ({
<ExclamationTriangleIcon
style={{
fontSize,
color: 'var(--pf-global--warning-color--100)',
fill: 'var(--pf-global--warning-color--100)',
}}
/>
);
Expand Down

0 comments on commit c3a6bd8

Please sign in to comment.