diff --git a/CHANGELOG.md b/CHANGELOG.md index 72ca0420..5078f521 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Release Notes for Campaign +## 3.5.2 - Unreleased + +### Fixed + +- Fixed the sendout status label on sendout edit and preview pages. + ## 3.5.1 - 2024-09-30 ### Changed diff --git a/composer.json b/composer.json index a513e8e8..b00a4189 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { "name": "putyourlightson/craft-campaign", "description": "Send and manage email campaigns, contacts and mailing lists.", - "version": "3.5.1", + "version": "3.5.2", "type": "craft-plugin", "homepage": "https://putyourlightson.com/plugins/campaign", "license": "proprietary", diff --git a/src/templates/sendouts/_preview.twig b/src/templates/sendouts/_preview.twig index 20ed31a7..d925aebe 100644 --- a/src/templates/sendouts/_preview.twig +++ b/src/templates/sendouts/_preview.twig @@ -92,7 +92,8 @@
{{ 'Status'|t('app') }}
- {{ sendout.statuses[sendout.status] }} + + {{ sendout.statuses[sendout.status].label ?? '' }}
{% include 'campaign/_includes/actions' %}