diff --git a/web/ui/mantine-ui/src/App.tsx b/web/ui/mantine-ui/src/App.tsx index 3bec30fa31..2599c9f5aa 100644 --- a/web/ui/mantine-ui/src/App.tsx +++ b/web/ui/mantine-ui/src/App.tsx @@ -332,14 +332,16 @@ function App() { justify="space-between" wrap="nowrap" > - + - Prometheus{agentMode && " Agent"} + Prometheus + Prometheus + {agentMode && "Agent"} diff --git a/web/ui/mantine-ui/src/components/ThemeSelector.tsx b/web/ui/mantine-ui/src/components/ThemeSelector.tsx index 964d491a04..131327a1f6 100644 --- a/web/ui/mantine-ui/src/components/ThemeSelector.tsx +++ b/web/ui/mantine-ui/src/components/ThemeSelector.tsx @@ -1,8 +1,8 @@ import { useMantineColorScheme, rem, ActionIcon } from "@mantine/core"; import { - IconBrightnessFilled, IconMoonFilled, IconSunFilled, + IconBrightnessFilled, } from "@tabler/icons-react"; import { FC } from "react"; @@ -30,11 +30,11 @@ export const ThemeSelector: FC = () => { } > {colorScheme === "light" ? ( - - ) : colorScheme === "dark" ? ( - - ) : ( + ) : colorScheme === "dark" ? ( + + ) : ( + )} );