diff --git a/plugins/llm-security/playground/llm-security-playground.html b/plugins/llm-security/playground/llm-security-playground.html
index e483158..b66dd3e 100644
--- a/plugins/llm-security/playground/llm-security-playground.html
+++ b/plugins/llm-security/playground/llm-security-playground.html
@@ -6567,11 +6567,12 @@
// TOPBAR (felles for home/catalog/project)
// ============================================================
function renderTopbar(crumb) {
- const orgName = (store.state.shared.organization && store.state.shared.organization.name) || '';
- const breadcrumbInner = (orgName ? escapeHtml(orgName) : '') + (orgName && crumb ? ' · ' : '') + (crumb || '');
- const breadcrumbHtml = breadcrumbInner
- ? ''
- : '';
+ // v7.7.1: onboarding er fjernet, så orgName fra shared.organization
+ // er ikke lenger meningsfullt i breadcrumb. Bruker statisk
+ // "llm-security" som scope-anker pluss valgfri crumb.
+ const breadcrumbInner = 'llm-security' + (crumb ? ' · ' + crumb : '');
+ const breadcrumbHtml =
+ '';
const currentTheme = document.documentElement.getAttribute('data-theme') === 'light' ? 'light' : 'dark';
const themeLabel = currentTheme === 'light' ? 'Lys' : 'Mørk';
const themeNext = currentTheme === 'light' ? 'mørk' : 'lys';