diff --git a/application/Espo/Modules/Crm/Resources/i18n/en_US/TargetList.json b/application/Espo/Modules/Crm/Resources/i18n/en_US/TargetList.json index 549e21be72..a6c56765bd 100644 --- a/application/Espo/Modules/Crm/Resources/i18n/en_US/TargetList.json +++ b/application/Espo/Modules/Crm/Resources/i18n/en_US/TargetList.json @@ -28,7 +28,8 @@ "Newsletter": "Newsletter" }, "targetStatus": { - "Opted Out": "Opted Out" + "Opted Out": "Opted Out", + "Listed": "Listed" } }, "labels": { diff --git a/application/Espo/Modules/Crm/Resources/metadata/entityDefs/TargetList.json b/application/Espo/Modules/Crm/Resources/metadata/entityDefs/TargetList.json index db2d8b10f0..63ebf29a69 100644 --- a/application/Espo/Modules/Crm/Resources/metadata/entityDefs/TargetList.json +++ b/application/Espo/Modules/Crm/Resources/metadata/entityDefs/TargetList.json @@ -73,7 +73,7 @@ }, "targetStatus": { "type": "enum", - "options": ["", "Opted Out"], + "options": ["Listed", "Opted Out"], "notStorable": true, "readOnly": true, "layoutListDisabled": true, diff --git a/client/modules/crm/src/views/target-list/fields/target-status.js b/client/modules/crm/src/views/target-list/fields/target-status.js index fda12c99aa..886595b6a5 100644 --- a/client/modules/crm/src/views/target-list/fields/target-status.js +++ b/client/modules/crm/src/views/target-list/fields/target-status.js @@ -35,7 +35,7 @@ Espo.define('crm:views/target-list/fields/target-status', 'views/fields/base', f return this.getLanguage().translateOption('Opted Out', 'targetStatus', 'TargetList'); } - return ''; + return this.getLanguage().translateOption('Listed', 'targetStatus', 'TargetList'); } }); });