1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-20 10:13:31 +00:00

[PM-4917, PM-8707, PM-9119] Persist login email memory through 2fa on browser (#9811)

* persist email memory through 2fa on browser

* fix tests

* fix desktop
This commit is contained in:
Jake Fink
2024-07-11 14:51:06 -04:00
committed by GitHub
parent 4f3760beae
commit 9c66b5bf9f
9 changed files with 60 additions and 45 deletions

View File

@@ -75,7 +75,7 @@
class="tw-mt-2"
routerLink="/hint"
(mousedown)="goToHint()"
(click)="setLoginEmailValues()"
(click)="saveEmailSettings()"
>{{ "getMasterPasswordHint" | i18n }}</a
>
</div>

View File

@@ -160,7 +160,7 @@ export class LoginComponent extends BaseLoginComponent implements OnInit {
}
async goToHint() {
this.setLoginEmailValues();
await this.saveEmailSettings();
await this.router.navigateByUrl("/hint");
}