mirror of
https://github.com/bitwarden/browser.git
synced 2024-12-22 16:29:09 +01:00
swap boolean label for checked (#10168)
This commit is contained in:
parent
019c5d6677
commit
0e51695078
@ -1317,6 +1317,9 @@
|
|||||||
"cfTypeBoolean": {
|
"cfTypeBoolean": {
|
||||||
"message": "Boolean"
|
"message": "Boolean"
|
||||||
},
|
},
|
||||||
|
"cfTypeChecked": {
|
||||||
|
"message": "Checked"
|
||||||
|
},
|
||||||
"cfTypeLinked": {
|
"cfTypeLinked": {
|
||||||
"message": "Linked",
|
"message": "Linked",
|
||||||
"description": "This describes a field that is 'linked' (tied) to another field."
|
"description": "This describes a field that is 'linked' (tied) to another field."
|
||||||
|
@ -52,7 +52,7 @@ export class AddEditCustomFieldDialogComponent {
|
|||||||
fieldTypeOptions = [
|
fieldTypeOptions = [
|
||||||
{ name: this.i18nService.t("cfTypeText"), value: FieldType.Text },
|
{ name: this.i18nService.t("cfTypeText"), value: FieldType.Text },
|
||||||
{ name: this.i18nService.t("cfTypeHidden"), value: FieldType.Hidden },
|
{ name: this.i18nService.t("cfTypeHidden"), value: FieldType.Hidden },
|
||||||
{ name: this.i18nService.t("cfTypeBoolean"), value: FieldType.Boolean },
|
{ name: this.i18nService.t("cfTypeChecked"), value: FieldType.Boolean },
|
||||||
{ name: this.i18nService.t("cfTypeLinked"), value: FieldType.Linked },
|
{ name: this.i18nService.t("cfTypeLinked"), value: FieldType.Linked },
|
||||||
];
|
];
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user