feat(admin): replace single page name with dynamic breadcrumb navigation in AdminTop

This commit is contained in:
2026-04-22 15:51:01 -04:00
parent cc5c556396
commit 0c860d9fe5
3 changed files with 52 additions and 22 deletions
+2 -2
View File
@@ -71,8 +71,8 @@ export function getNavItems() {
// ---- Pages -----------------------------------------------------------------
export function registerPage({ slug, Component, title }) {
pages.set(slug, { slug, Component, title });
export function registerPage({ slug, Component, title, breadcrumbLabel }) {
pages.set(slug, { slug, Component, title, breadcrumbLabel });
}
export function getPage(slug) {