1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 16:53:34 +00:00

Auth - LoginComp - Focus logic bugfix - add null check to avoid error as focusInput was being called prematurely in some scenarios - confirmed the focus logic still works (#6095)

This commit is contained in:
Jared Snider
2023-08-31 18:06:47 -04:00
committed by GitHub
parent 302b0dfe74
commit ac1c7f9c8f

View File

@@ -182,6 +182,6 @@ export class LoginComponent extends BaseLoginComponent implements OnDestroy {
private focusInput() {
const email = this.loggedEmail;
document.getElementById(email == null || email === "" ? "email" : "masterPassword").focus();
document.getElementById(email == null || email === "" ? "email" : "masterPassword")?.focus();
}
}