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:
parent
302b0dfe74
commit
ac1c7f9c8f
|
@ -182,6 +182,6 @@ export class LoginComponent extends BaseLoginComponent implements OnDestroy {
|
||||||
|
|
||||||
private focusInput() {
|
private focusInput() {
|
||||||
const email = this.loggedEmail;
|
const email = this.loggedEmail;
|
||||||
document.getElementById(email == null || email === "" ? "email" : "masterPassword").focus();
|
document.getElementById(email == null || email === "" ? "email" : "masterPassword")?.focus();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue