mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-25 12:15:18 +01:00
Added focus to the email and master password fields (#3934)
This commit is contained in:
parent
b637c2f172
commit
05fe75d96f
@ -25,6 +25,7 @@
|
||||
bitInput
|
||||
type="email"
|
||||
formControlName="email"
|
||||
appAutofocus
|
||||
(keyup.enter)="validateEmail()"
|
||||
/>
|
||||
</bit-form-field>
|
||||
@ -79,6 +80,7 @@
|
||||
bitInput
|
||||
type="{{ showPassword ? 'text' : 'password' }}"
|
||||
formControlName="masterPassword"
|
||||
appAutofocus
|
||||
/>
|
||||
<button type="button" bitSuffix bitButton (click)="togglePassword()">
|
||||
<i
|
||||
|
@ -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();
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user