Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
gnovaro authored Sep 25, 2023
1 parent 907ddbb commit 9e10839
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Helpers/LeadStatus.php
Original file line number Diff line number Diff line change
Expand Up @@ -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',
};
Expand Down

0 comments on commit 9e10839

Please sign in to comment.