diff --git a/app/Traits/HasProjectStatus.php b/app/Traits/HasProjectStatus.php index e77242b8..e58ed4fb 100644 --- a/app/Traits/HasProjectStatus.php +++ b/app/Traits/HasProjectStatus.php @@ -51,7 +51,9 @@ public function isArchived(): bool public function isStartingSoon(): bool { - return $this->isPublished() && ($this->start->isFuture() || ! $this->organization->EuPlatescIsActive()); + return $this->isPublished() + && ! $this->end->isPast() + && ($this->start->isFuture() || ! $this->organization->EuPlatescIsActive()); } public function isClose(): bool