From ef109b87a3b4fba3a48d71e8e2a2be76ddb3e125 Mon Sep 17 00:00:00 2001 From: fsociety Date: Mon, 7 Oct 2024 14:18:10 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20style(association-status):=20upd?= =?UTF-8?q?ate=20text=20color=20for=20default=20association=20status=20in?= =?UTF-8?q?=20Pleb=20table=20component?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Livewire/EinundzwanzigPlebTable.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Livewire/EinundzwanzigPlebTable.php b/app/Livewire/EinundzwanzigPlebTable.php index 705a07f..6037948 100644 --- a/app/Livewire/EinundzwanzigPlebTable.php +++ b/app/Livewire/EinundzwanzigPlebTable.php @@ -97,7 +97,7 @@ final class EinundzwanzigPlebTable extends PowerGridComponent 'association_status_formatted', function (EinundzwanzigPleb $model) { $class = match ($model->association_status) { - AssociationStatus::DEFAULT => 'text-xs inline-flex font-medium rounded-full text-center px-2.5 py-1 bg-gray-500/20 text-gray-700', + AssociationStatus::DEFAULT => 'text-xs inline-flex font-medium rounded-full text-center px-2.5 py-1 bg-gray-500/20 text-gray-200', AssociationStatus::PASSIVE => 'text-xs inline-flex font-medium rounded-full text-center px-2.5 py-1 bg-yellow-500/20 text-yellow-700', AssociationStatus::ACTIVE => 'text-xs inline-flex font-medium rounded-full text-center px-2.5 py-1 bg-green-500/20 text-green-700', AssociationStatus::HONORARY => 'text-xs inline-flex font-medium rounded-full text-center px-2.5 py-1 bg-blue-500/20 text-blue-700',