diff --git a/src/renderer/components/hotbar/hotbar-entity-icon.tsx b/src/renderer/components/hotbar/hotbar-entity-icon.tsx index 8620db124d..b03bf3fb92 100644 --- a/src/renderer/components/hotbar/hotbar-entity-icon.tsx +++ b/src/renderer/components/hotbar/hotbar-entity-icon.tsx @@ -74,6 +74,10 @@ export class HotbarEntityIcon extends React.Component { } get ledIcon() { + if (this.props.entity.kind !== "KubernetesCluster") { + return null; + } + const className = cssNames("led", { online: this.props.entity.status.phase == "connected"}); // TODO: make it more generic return
;