Skip to content

Commit

Permalink
Show the correct icon next to the nodes (#2587)
Browse files Browse the repository at this point in the history
  • Loading branch information
ammont82 authored May 30, 2024
1 parent 10e299e commit 23de385
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 23de385

Please sign in to comment.