Skip to content

Commit

Permalink
fix node status tootltip icon unhealth color (#506)
Browse files Browse the repository at this point in the history
icon unhealth color issue fix

Co-authored-by: Prathipati Nithish <92970000+Nithishprem@users.noreply.github.com>
  • Loading branch information
mohandholu43 and Nithishprem authored Jan 27, 2025
1 parent 9d03ddd commit b0a762f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ const NodeStatusTooltip = ({ detailedHealth, children }) => {
<CircleCheckIcon />
) : (
<CircleCrossIcon
color={item.status === "UNHEALTHY" ? "" : "#808080"}
color={item.status === "UNHEALTHY" ? "#F44336" : "#808080"}
/>
)}
<Text size="xsmall" weight="regular" color="rgba(52, 64, 84, 1)">
Expand Down

0 comments on commit b0a762f

Please sign in to comment.