1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-12 06:13:38 +00:00

Added focus to the email and master password fields (#3934)

This commit is contained in:
Gbubemi Smith
2022-10-31 17:37:42 -04:00
committed by GitHub
parent b637c2f172
commit 05fe75d96f
2 changed files with 2 additions and 5 deletions

View File

@@ -275,9 +275,4 @@ export class LoginComponent extends CaptchaProtectedComponent implements OnInit
this.showLoginWithDevice = false;
}
}
protected focusInput() {
const email = this.loggedEmail;
document.getElementById(email == null || email === "" ? "email" : "masterPassword").focus();
}
}