Skip to content

Commit

Permalink
Show the correct icon next to the nodes (#2587) (#2588)
Browse files Browse the repository at this point in the history
  • Loading branch information
ammont82 authored May 31, 2024
1 parent 9f9b51c commit bc8ddf1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/ui-lib/lib/common/components/hosts/HostStatus.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ const WithHostStatusPopover: React.FC<WithHostStatusPopoverProps> = (props) => (
);

const getHostStatusIcon = (icon: React.ReactNode, progress: HostProgressInfo | undefined) => {
if (progress?.stageTimedOut === undefined) {
if (progress?.stageTimedOut !== undefined) {
return (
<Popover
bodyContent={
Expand Down

0 comments on commit bc8ddf1

Please sign in to comment.