From c3752374d0cdc93f5cdd0688c1073d935790eeb1 Mon Sep 17 00:00:00 2001 From: KONE SOREL Date: Thu, 22 Jan 2026 17:05:27 +0000 Subject: [PATCH] fd --- Vue/Remboursement/index.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Vue/Remboursement/index.php b/Vue/Remboursement/index.php index a0635e3..4a32534 100755 --- a/Vue/Remboursement/index.php +++ b/Vue/Remboursement/index.php @@ -98,25 +98,28 @@ $bgStatus = "bg-success"; $iconStatus = "fa-check-double"; $status = _("Validée"); + $colorText = "text-light"; break; case "2": $bgStatus = "bg-warning"; $iconStatus = "fa-hourglass-half"; $status = _("En attente"); + $colorText = "text-dark"; break; default: $bgStatus = "bg-danger"; $iconStatus = "fa-ban"; $status = _("Refusée"); + $colorText = "text-light"; break; } ?>
- +