mirror of
https://github.com/bitwarden/browser
synced 2025-12-17 16:53:34 +00:00
fix(sso-login): [PM-27674] (Auth) Make 'enter' press start sso process if ssoRequired (#17186)
If user's email is NOT in the ssoRequiredCache, pressing "enter" takes them to the MP login screen. If the user's email is in the ssoRequiredCache, pressing "enter" starts the SSO login process. Feature Flags enabled: pm-22110-disable-alternate-login-methods
This commit is contained in:
@@ -21,7 +21,7 @@
|
|||||||
bitInput
|
bitInput
|
||||||
appAutofocus
|
appAutofocus
|
||||||
(input)="onEmailInput($event)"
|
(input)="onEmailInput($event)"
|
||||||
(keyup.enter)="continuePressed()"
|
(keyup.enter)="ssoRequired ? handleSsoClick() : continuePressed()"
|
||||||
/>
|
/>
|
||||||
</bit-form-field>
|
</bit-form-field>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user