Skip to content

Commit

Permalink
checked -> checkbox (#10212)
Browse files Browse the repository at this point in the history
  • Loading branch information
nick-livefront authored Jul 22, 2024
1 parent 52f6b24 commit 0e207e8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions apps/browser/src/_locales/en/messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -1317,8 +1317,8 @@
"cfTypeBoolean": {
"message": "Boolean"
},
"cfTypeChecked": {
"message": "Checked"
"cfTypeCheckbox": {
"message": "Checkbox"
},
"cfTypeLinked": {
"message": "Linked",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export class AddEditCustomFieldDialogComponent {
fieldTypeOptions = [
{ name: this.i18nService.t("cfTypeText"), value: FieldType.Text },
{ name: this.i18nService.t("cfTypeHidden"), value: FieldType.Hidden },
{ name: this.i18nService.t("cfTypeChecked"), value: FieldType.Boolean },
{ name: this.i18nService.t("cfTypeCheckbox"), value: FieldType.Boolean },
{ name: this.i18nService.t("cfTypeLinked"), value: FieldType.Linked },
];

Expand Down

0 comments on commit 0e207e8

Please sign in to comment.