diff --git a/src/renderer/components/cluster-manager/bottom-bar.scss b/src/renderer/components/cluster-manager/bottom-bar.scss index 0f290eaf82..83ca2570db 100644 --- a/src/renderer/components/cluster-manager/bottom-bar.scss +++ b/src/renderer/components/cluster-manager/bottom-bar.scss @@ -6,7 +6,7 @@ padding: 0 2px; height: var(--bottom-bar-height); - #current-workspace { + #catalog-link { font-size: var(--font-size-small); color: white; padding: $padding / 4 $padding / 2; diff --git a/src/renderer/components/cluster-manager/bottom-bar.tsx b/src/renderer/components/cluster-manager/bottom-bar.tsx index 70b52685ea..eb82fdb6b2 100644 --- a/src/renderer/components/cluster-manager/bottom-bar.tsx +++ b/src/renderer/components/cluster-manager/bottom-bar.tsx @@ -3,6 +3,9 @@ import "./bottom-bar.scss"; import React from "react"; import { observer } from "mobx-react"; import { StatusBarRegistration, statusBarRegistry } from "../../../extensions/registries"; +import { navigate } from "../../navigation"; +import { catalogURL } from "../+catalog"; +import { Icon } from "../icon"; @observer export class BottomBar extends React.Component { @@ -43,6 +46,10 @@ export class BottomBar extends React.Component { render() { return (
+ {this.renderRegisteredItems()}
);