1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-10-02 04:48:57 +02:00

remove keydown handler; use div instead of form (#6688)

This commit is contained in:
Will Martin 2023-10-25 08:42:00 -04:00 committed by GitHub
parent 5b1c1d50eb
commit 057aa6e309
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,4 @@
<form [formGroup]="formGroup" (keydown.enter)="$event.preventDefault()">
<div [formGroup]="formGroup">
<bit-form-field>
<bit-label>{{ "lastPassEmail" | i18n }}</bit-label>
<input bitInput type="text" formControlName="email" />
@ -13,4 +13,4 @@
/>
<bit-label>{{ "includeSharedFolders" | i18n }}</bit-label>
</bit-form-control>
</form>
</div>