|
@@ -10,6 +10,7 @@ import Drawer from "./Drawer";
|
|
|
import { RouteComponentProps, withRouter } from "react-router";
|
|
import { RouteComponentProps, withRouter } from "react-router";
|
|
|
import { pushFiltered } from "shared/routing";
|
|
import { pushFiltered } from "shared/routing";
|
|
|
import { NavLink } from "react-router-dom";
|
|
import { NavLink } from "react-router-dom";
|
|
|
|
|
+import { Tooltip } from "@material-ui/core";
|
|
|
|
|
|
|
|
type PropsType = RouteComponentProps & {
|
|
type PropsType = RouteComponentProps & {
|
|
|
forceCloseDrawer: boolean;
|
|
forceCloseDrawer: boolean;
|
|
@@ -177,7 +178,9 @@ class ClusterSection extends Component<PropsType, StateType> {
|
|
|
<ClusterIcon>
|
|
<ClusterIcon>
|
|
|
<i className="material-icons">device_hub</i>
|
|
<i className="material-icons">device_hub</i>
|
|
|
</ClusterIcon>
|
|
</ClusterIcon>
|
|
|
- <ClusterName>{currentCluster && currentCluster.name}</ClusterName>
|
|
|
|
|
|
|
+ <Tooltip title={currentCluster?.name}>
|
|
|
|
|
+ <ClusterName>{currentCluster?.name}</ClusterName>
|
|
|
|
|
+ </Tooltip>
|
|
|
</LinkWrapper>
|
|
</LinkWrapper>
|
|
|
<DrawerButton
|
|
<DrawerButton
|
|
|
onClick={(e) => {
|
|
onClick={(e) => {
|