Remove top headers, cleanup.

This commit is contained in:
Leo Vasanko
2026-02-17 19:05:29 +00:00
parent 6135bbd834
commit 72d2f3ac85
2 changed files with 1 additions and 10 deletions
-8
View File
@@ -547,13 +547,6 @@ const selectedUser = computed(() => {
return null
})
const pageHeading = computed(() => {
if (selectedUser.value) return 'Admin: User'
if (selectedOrg.value) return 'Admin: Org'
if (currentOidcId.value) return 'Admin: OIDC Client'
return ((authStore.settings?.rp_name) || 'Master') + ' Admin'
})
// Breadcrumb entries for admin app.
const breadcrumbEntries = computed(() => {
const entries = [
@@ -937,7 +930,6 @@ async function submitDialog() {
/>
<section v-else-if="authenticated && (isMasterAdmin || isOrgAdmin)" class="view-root view-root--wide view-admin">
<header class="view-header">
<h1>{{ pageHeading }}</h1>
<Breadcrumbs ref="breadcrumbsRef" :entries="breadcrumbEntries" @keydown="handleBreadcrumbKeydown" />
</header>
+1 -2
View File
@@ -5,9 +5,8 @@
<ThemeSelector />
</div>
<header class="view-header">
<h1>User Profile</h1>
<Breadcrumbs ref="breadcrumbs" :entries="breadcrumbEntries" @keydown="handleBreadcrumbKeydown" />
<p class="view-lede">Account dashboard for managing credentials and authenticating with other devices.</p>
<p class="view-lede">Account dashboard to manage your profile and authentications.</p>
</header>
</div>