Skip to content

Commit

Permalink
Fix pending status colour
Browse files Browse the repository at this point in the history
  • Loading branch information
bencroker committed Dec 9, 2024
1 parent cdd5942 commit 35ed35f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
1 change: 1 addition & 0 deletions src/elements/SendoutElement.php
Original file line number Diff line number Diff line change
Expand Up @@ -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'),
Expand Down

0 comments on commit 35ed35f

Please sign in to comment.