1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-14 15:23:33 +00:00

Add Inputmode for tel and email (identities) (#1384)

This commit is contained in:
Christian Oliff
2022-01-12 18:07:56 +09:00
committed by GitHub
parent fd1d512a0f
commit b8de92435b

View File

@@ -587,6 +587,7 @@
id="idEmail"
class="form-control"
type="text"
inputmode="email"
name="Identity.Email"
[(ngModel)]="cipher.identity.email"
appInputVerbatim
@@ -599,6 +600,7 @@
id="idPhone"
class="form-control"
type="text"
inputmode="tel"
name="Identity.Phone"
[(ngModel)]="cipher.identity.phone"
[disabled]="cipher.isDeleted || viewOnly"