UX: Move "All Site Settings" link to top of admin sidebar (#26313)

We are still making improvements to the admin sidebar and
various parts of the admin section. For now, to make the
transition easier, we are moving this link to the top of the
sidebar so it's clear that admins can still get to all settings
if they need to.
This commit is contained in:
Martin Brennan 2024-03-22 13:00:24 +10:00 committed by GitHub
parent 2417b090a9
commit d3ad11cd5c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 6 deletions

View File

@ -378,12 +378,6 @@ export const ADMIN_NAV_MAP = [
label: "admin.advanced.sidebar_link.experimental",
icon: "discourse-sparkles",
},
{
name: "admin_all_site_settings",
route: "adminSiteSettings",
label: "admin.advanced.sidebar_link.all_site_settings",
icon: "cog",
},
],
},
];

View File

@ -153,6 +153,12 @@ export function useAdminNavConfig(navMap) {
label: "admin.dashboard.title",
icon: "home",
},
{
name: "admin_all_site_settings",
route: "adminSiteSettings",
label: "admin.advanced.sidebar_link.all_site_settings",
icon: "cog",
},
],
},
];