diff --git a/apps/web/src/app/core/router.service.ts b/apps/web/src/app/core/router.service.ts index 279b94d4ef4..82399d4e495 100644 --- a/apps/web/src/app/core/router.service.ts +++ b/apps/web/src/app/core/router.service.ts @@ -23,7 +23,12 @@ export class RouterService { .subscribe((event: NavigationEnd) => { this.currentUrl = event.url; - let title = i18nService.t("pageTitle", "Bitwarden"); + let title = i18nService.t("bitWebVault"); + + if (this.currentUrl.includes("/sm/")) { + title = i18nService.t("bitSecretsManager"); + } + let child = this.activatedRoute.firstChild; while (child.firstChild) { child = child.firstChild; diff --git a/apps/web/src/app/layouts/navbar.component.html b/apps/web/src/app/layouts/navbar.component.html index 0f13d7ddee1..edb7836554b 100644 --- a/apps/web/src/app/layouts/navbar.component.html +++ b/apps/web/src/app/layouts/navbar.component.html @@ -1,6 +1,6 @@