swap boolean label for checked (#10168)

This commit is contained in:
Nick Krantz 2024-07-22 09:15:16 -05:00 committed by GitHub
parent 019c5d6677
commit 0e51695078
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 1 deletions

View File

@ -1317,6 +1317,9 @@
"cfTypeBoolean": {
"message": "Boolean"
},
"cfTypeChecked": {
"message": "Checked"
},
"cfTypeLinked": {
"message": "Linked",
"description": "This describes a field that is 'linked' (tied) to another field."

View File

@ -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("cfTypeBoolean"), value: FieldType.Boolean },
{ name: this.i18nService.t("cfTypeChecked"), value: FieldType.Boolean },
{ name: this.i18nService.t("cfTypeLinked"), value: FieldType.Linked },
];