1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-20 02:03:39 +00:00

[Bug] Update 2fa navigate action to pass along Org Identifier (#714)

* Add identifer in 2fa navigate action

* Update jslib (6563dcc -> d9d13bb)

* fixed breaking changes from jslib update
This commit is contained in:
Vincent Salucci
2020-11-23 09:12:12 -06:00
committed by GitHub
parent 82b36c1b70
commit 03f575f66f
4 changed files with 11 additions and 3 deletions

View File

@@ -69,7 +69,11 @@ export class TwoFactorComponent extends BaseTwoFactorComponent {
this.router.navigate([loginRedirect.route], { queryParams: loginRedirect.qParams });
await this.stateService.remove('loginRedirect');
} else {
this.router.navigate([this.successRoute]);
this.router.navigate([this.successRoute], {
queryParams: {
identifier: this.identifier,
},
});
}
}
}