From a5bf29d6c228e26ccdabf40c786b5184faf36fc0 Mon Sep 17 00:00:00 2001 From: manukminasyan Date: Fri, 27 Mar 2026 21:44:18 +0400 Subject: [PATCH] fix: use gray badge color for comment count --- src/Filament/Actions/CommentsAction.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Filament/Actions/CommentsAction.php b/src/Filament/Actions/CommentsAction.php index 0a44526..60b8d7b 100644 --- a/src/Filament/Actions/CommentsAction.php +++ b/src/Filament/Actions/CommentsAction.php @@ -36,7 +36,8 @@ class CommentsAction extends Action $count = $record->commentCount(); return $count > 0 ? $count : null; - }); + }) + ->badgeColor('gray'); } public static function getDefaultName(): ?string