diff --git a/src/widgets/glances/components/container.jsx b/src/widgets/glances/components/container.jsx index ebbe3d986..3e9e8b5a7 100644 --- a/src/widgets/glances/components/container.jsx +++ b/src/widgets/glances/components/container.jsx @@ -1,4 +1,5 @@ import { useContext } from "react"; +import classNames from "classnames"; import Error from "./error"; @@ -17,10 +18,10 @@ export default function Container({ children, widget, error = null, chart = true } return ( -
+
{children}
- {chart &&
} + {chart &&
} {!chart &&
}
);