From 9f0c438f361fcdab6da39eaa20000aa03f9dac6e Mon Sep 17 00:00:00 2001 From: Thomas Heartman Date: Fri, 18 Oct 2024 09:03:29 +0200 Subject: [PATCH] fix: add the dashboard icon to the iconrenderer (#8474) This makes the icon show up correctly in the command menu. ![image](https://github.com/user-attachments/assets/0178c9a7-3509-4f36-9a33-fe12e5a42707) --- .../layout/MainLayout/NavigationSidebar/IconRenderer.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/src/component/layout/MainLayout/NavigationSidebar/IconRenderer.tsx b/frontend/src/component/layout/MainLayout/NavigationSidebar/IconRenderer.tsx index fc9953b61cdd..3ce28dcecd16 100644 --- a/frontend/src/component/layout/MainLayout/NavigationSidebar/IconRenderer.tsx +++ b/frontend/src/component/layout/MainLayout/NavigationSidebar/IconRenderer.tsx @@ -28,6 +28,7 @@ import EventLogIcon from '@mui/icons-material/EventNoteOutlined'; import GitHubIcon from '@mui/icons-material/GitHub'; import LibraryBooksIcon from '@mui/icons-material/LibraryBooks'; import LaunchIcon from '@mui/icons-material/Launch'; +import PersonalDashboardIcon from '@mui/icons-material/DashboardOutlined'; import type { FC } from 'react'; // TODO: move to routes @@ -58,6 +59,7 @@ const icons: Record = { '/admin/billing': BillingIcon, '/history': EventLogIcon, '/releases-management': LaunchIcon, + '/personal': PersonalDashboardIcon, GitHub: GitHubIcon, Documentation: LibraryBooksIcon, };