mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 08:13:42 +00:00
Use continue method unanimously
This commit is contained in:
@@ -21,7 +21,7 @@
|
|||||||
bitInput
|
bitInput
|
||||||
appAutofocus
|
appAutofocus
|
||||||
(blur)="onEmailBlur($event)"
|
(blur)="onEmailBlur($event)"
|
||||||
(keyup.enter)="clientType === ClientType.Desktop ? continue() : validateEmail()"
|
(keyup.enter)="continue()"
|
||||||
/>
|
/>
|
||||||
</bit-form-field>
|
</bit-form-field>
|
||||||
|
|
||||||
@@ -33,7 +33,7 @@
|
|||||||
|
|
||||||
<div class="tw-grid tw-gap-3">
|
<div class="tw-grid tw-gap-3">
|
||||||
<!-- Continue button -->
|
<!-- Continue button -->
|
||||||
<button type="button" bitButton block buttonType="primary" (click)="validateEmail()">
|
<button type="button" bitButton block buttonType="primary" (click)="continue()">
|
||||||
{{ "continue" | i18n }}
|
{{ "continue" | i18n }}
|
||||||
</button>
|
</button>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user