1
0
mirror of https://github.com/bitwarden/browser synced 2026-01-10 04:23:53 +00:00

Prevent email address validation on blur.

This commit is contained in:
Alec Rippberger
2024-09-23 22:53:58 -05:00
parent 54f0c0a46a
commit c37f726f7d
2 changed files with 27 additions and 9 deletions

View File

@@ -25,7 +25,13 @@
<!-- Email Address input -->
<bit-form-field class="!tw-mb-4">
<bit-label>{{ "emailAddress" | i18n }}</bit-label>
<input type="email" formControlName="email" bitInput appAutofocus />
<input
type="email"
formControlName="email"
bitInput
appAutofocus
(blur)="onEmailBlur($event)"
/>
</bit-form-field>
<!-- Remember Email input -->