diff --git a/CHANGELOG.md b/CHANGELOG.md index 9459b3ba..cf13d7e6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Release Notes for Campaign +## 3.5.8 - 2024-12-09 + +### Fixed + +- Fixed a bug in which pending sendouts did not have a status colour assigned ([#507](https://github.com/putyourlightson/craft-campaign/issues/507)). + ## 3.5.7 - 2024-11-29 ### Fixed diff --git a/composer.json b/composer.json index f11efa27..85868896 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.7", + "version": "3.5.8", "type": "craft-plugin", "homepage": "https://putyourlightson.com/plugins/campaign", "license": "proprietary", diff --git a/src/elements/SendoutElement.php b/src/elements/SendoutElement.php index 5fff6e9c..69b93bc9 100755 --- a/src/elements/SendoutElement.php +++ b/src/elements/SendoutElement.php @@ -219,6 +219,7 @@ public static function statuses(): array ], self::STATUS_PENDING => [ 'label' => Craft::t('campaign', 'Pending'), + 'color' => Color::Orange, ], self::STATUS_PAUSED => [ 'label' => Craft::t('campaign', 'Paused'),