From 414247b1c1b57447ef69af864cd494beb0be4b6b Mon Sep 17 00:00:00 2001 From: Mr Sleeps Date: Mon, 29 Jun 2026 18:42:56 +0100 Subject: [PATCH] Updated --- src/Filament/Resources/Tables/DomainsTable.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Filament/Resources/Tables/DomainsTable.php b/src/Filament/Resources/Tables/DomainsTable.php index 44986dce..284d6926 100644 --- a/src/Filament/Resources/Tables/DomainsTable.php +++ b/src/Filament/Resources/Tables/DomainsTable.php @@ -68,14 +68,14 @@ IconColumn::make('dmarc_status') return match($state) { 'valid' => 'heroicon-o-shield-check', 'invalid' => 'heroicon-o-exclamation-triangle', - 'not_checked' => 'heroicon-o-clock', // or 'heroicon-o-question-mark-circle' + 'not_checked' => 'heroicon-o-exclamation-triangle', // or 'heroicon-o-question-mark-circle' }; }) ->color(function ($state): string { return match($state) { 'valid' => 'success', 'invalid' => 'danger', - 'not_checked' => 'gray', + 'not_checked' => 'yellow', }; }) ->tooltip(function ($record): string {