1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-04-19 01:17:18 +02:00

chore: rename personal dashboard menu item to dashboard (#8437)

This change updates the title for the personal dashboard menu item to
be just "dashboard"

Before:

![image](https://github.com/user-attachments/assets/d04be63c-ad1f-471b-8ab1-5e781063716c)

After:

![image](https://github.com/user-attachments/assets/dc4a39b6-5b30-455d-b20a-6f04f84962d7)
This commit is contained in:
Thomas Heartman 2024-10-15 09:34:43 +02:00 committed by GitHub
parent d02443be95
commit 4167d772e9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View File

@ -165,7 +165,7 @@ export const PrimaryNavigationList: FC<{
{personalDashboardUIEnabled ? ( {personalDashboardUIEnabled ? (
<DynamicListItem <DynamicListItem
href='/personal' href='/personal'
text='Personal Dashboard' text='Dashboard'
onClick={() => onClick('/personal')} onClick={() => onClick('/personal')}
selected={activeItem === '/personal'} selected={activeItem === '/personal'}
> >

View File

@ -16,7 +16,7 @@ exports[`returns all baseRoutes 1`] = `
"mobile": true, "mobile": true,
}, },
"path": "/personal", "path": "/personal",
"title": "Personal Dashboard", "title": "Dashboard",
"type": "protected", "type": "protected",
}, },
{ {

View File

@ -62,7 +62,7 @@ export const routes: IRoute[] = [
// Personal Dashboard // Personal Dashboard
{ {
path: '/personal', path: '/personal',
title: 'Personal Dashboard', title: 'Dashboard',
component: PersonalDashboard, component: PersonalDashboard,
type: 'protected', type: 'protected',
menu: { mobile: true }, menu: { mobile: true },