Skip to content

Commit

Permalink
Integrate changes to translations.
Browse files Browse the repository at this point in the history
  • Loading branch information
alec-livefront committed Oct 14, 2024
1 parent 08c6926 commit 497e143
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
4 changes: 3 additions & 1 deletion apps/web/src/app/oss-routing.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,9 @@ const routes: Routes = [
path: "login",
canActivate: [unauthGuardFn()],
data: {
pageTitle: "logInToBitwarden",
pageTitle: {
key: "logInToBitwarden",
},
} satisfies RouteDataProperties & AnonLayoutWrapperData,
children: [
{
Expand Down
7 changes: 3 additions & 4 deletions libs/auth/src/angular/login/login.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -332,11 +332,10 @@ export class LoginComponent implements OnInit, OnDestroy {
await this.getLoginWithDevice(this.loggedEmail);

Check warning on line 332 in libs/auth/src/angular/login/login.component.ts

View check run for this annotation

Codecov / codecov/patch

libs/auth/src/angular/login/login.component.ts#L331-L332

Added lines #L331 - L332 were not covered by tests

this.anonLayoutWrapperDataService.setAnonLayoutWrapperData({

Check warning on line 334 in libs/auth/src/angular/login/login.component.ts

View check run for this annotation

Codecov / codecov/patch

libs/auth/src/angular/login/login.component.ts#L334

Added line #L334 was not covered by tests
pageTitle: "welcomeBack",
pageSubtitle: {
subtitle: `${this.loggedEmail}`,
translate: false,
pageTitle: {
key: "welcomeBack",
},
pageSubtitle: this.loggedEmail,
pageIcon: this.Icons.WaveIcon,
});

Expand Down

0 comments on commit 497e143

Please sign in to comment.