Skip to content

Commit

Permalink
Merge pull request #929 from headlamp-k8s/fix-sidebar-on-locale
Browse files Browse the repository at this point in the history
Fix sidebar on locale
  • Loading branch information
joaquimrocha authored Feb 2, 2023
2 parents 10bcbfb + 0ab1069 commit 53fd76f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions frontend/src/components/Sidebar/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,19 +69,19 @@ export default function Sidebar() {
const { t, i18n } = useTranslation(['glossary', 'frequent']);
const specialSidebarOptions: SidebarItemProps[] = [
{
name: t('frequent|back'),
name: 'clusters',
icon: 'mdi:hexagon-multiple',
label: t('glossary|Cluster'),
url: '/',
},
{
name: t('frequent|notifications'),
name: 'notifications',
icon: 'mdi:bell',
label: t('frequent|Notifications'),
url: '/notifications',
},
{
name: t('frequent|settings'),
name: 'settings',
icon: 'mdi:cog',
label: t('frequent|Settings'),
url: '/settings',
Expand Down

0 comments on commit 53fd76f

Please sign in to comment.