From 9e108397eecd624e14175f3a29b29b3fb4f85d7b Mon Sep 17 00:00:00 2001 From: Gustavo Novaro Date: Mon, 25 Sep 2023 23:30:14 +0200 Subject: [PATCH] Fix --- app/Helpers/LeadStatus.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Helpers/LeadStatus.php b/app/Helpers/LeadStatus.php index 54981748..d6200713 100755 --- a/app/Helpers/LeadStatus.php +++ b/app/Helpers/LeadStatus.php @@ -13,7 +13,7 @@ public static function renderBadge(string $status): string return match ($status) { Lead::OPEN => 'text-bg-success', Lead::IN_PROGRESS => 'text-bg-warning', - Lead::WAITING_FEEDBACK => 'text-bg-primary'; + Lead::WAITING_FEEDBACK => 'text-bg-primary', Lead::CLOSED => 'text-bg-danger', default => 'text-bg-dark', };