Skip to content

Commit

Permalink
ui/doc: change the cluster status icon from question to info
Browse files Browse the repository at this point in the history
We want to keep the consistency of the icon.
since we already have quesion icon in the navbar, it should be better we use another icon.
  • Loading branch information
ChengYanJin committed Jan 8, 2020
1 parent fdca4df commit 1342a01
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui/src/containers/ClusterMonitoring.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ const ClusterStatusValue = styled.span`
}};
`;

const QuestionMarkIcon = styled.i`
const InformationMarkIcon = styled.i`
color: ${props => props.theme.brand.primary};
`;

Expand Down Expand Up @@ -222,7 +222,7 @@ const ClusterMonitoring = props => {
</TooltipContent>
}
>
<QuestionMarkIcon className="fas fa-question-circle" />
<InformationMarkIcon className="fas fa-info-circle" />
</Tooltip>
{clusterStatus.isLoading ? <LoaderCoreUI size="small" /> : null}
</LeftClusterStatusContainer>
Expand Down

0 comments on commit 1342a01

Please sign in to comment.