mirror of
https://github.com/bitwarden/browser.git
synced 2025-01-22 21:21:35 +01:00
Fix translations.
This commit is contained in:
parent
38051c9e7d
commit
28aae75abf
@ -454,7 +454,9 @@ const routes: Routes = [
|
||||
canActivate: [unauthGuardFn(unauthRouteOverrides)],
|
||||
data: {
|
||||
pageIcon: VaultIcon,
|
||||
pageTitle: "logInToBitwarden",
|
||||
pageTitle: {
|
||||
key: "logInToBitwarden",
|
||||
},
|
||||
state: "login",
|
||||
showAcctSwitcher: true,
|
||||
} satisfies RouteDataProperties & ExtensionAnonLayoutWrapperData,
|
||||
|
@ -177,7 +177,9 @@ const routes: Routes = [
|
||||
path: "login",
|
||||
canActivate: [maxAccountsGuardFn()],
|
||||
data: {
|
||||
pageTitle: "logInToBitwarden",
|
||||
pageTitle: {
|
||||
key: "logInToBitwarden",
|
||||
},
|
||||
},
|
||||
children: [
|
||||
{ path: "", component: LoginComponent },
|
||||
|
@ -331,7 +331,7 @@ export class LoginComponent implements OnInit, OnDestroy {
|
||||
await this.getLoginWithDevice(this.loggedEmail);
|
||||
|
||||
this.anonLayoutWrapperDataService.setAnonLayoutWrapperData({
|
||||
pageTitle: "welcomeBack",
|
||||
pageTitle: { key: "welcomeBack" },
|
||||
pageSubtitle: this.loggedEmail,
|
||||
pageIcon: this.Icons.WaveIcon,
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user