1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-29 04:17:41 +02:00

Fix PhoneNumber value of 1pux LoginFieldTypeEnum (#7113)

According to https://support.1password.com/1pux-format/#item-details it needs to be `TEL` instead of `T`

As far as I know, this has not been an issue, as I haven't been able to create a loginfield of type PhoneNumber within 1Password.

Co-authored-by: Daniel James Smith <djsmith85@users.noreply.github.com>
This commit is contained in:
Daniel James Smith 2023-12-06 15:36:15 +01:00 committed by GitHub
parent 5582d7644c
commit 6846026961
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -74,7 +74,7 @@ export enum LoginFieldTypeEnum {
Number = "N",
Password = "P",
TextArea = "A",
PhoneNumber = "T",
PhoneNumber = "TEL",
CheckBox = "C",
}
export interface LoginFieldsEntity {