From 8f16d5190c72a8ac400024e19a60db0e6445689a Mon Sep 17 00:00:00 2001 From: ajdj100 Date: Thu, 18 Dec 2025 21:57:43 -0500 Subject: [PATCH] fixed incorrect label for extended LOAs when past their original end data --- ui/src/components/loa/loaList.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/components/loa/loaList.vue b/ui/src/components/loa/loaList.vue index a097af4..844f3ae 100644 --- a/ui/src/components/loa/loaList.vue +++ b/ui/src/components/loa/loaList.vue @@ -84,7 +84,7 @@ function loaStatus(loa: LOARequest): "Upcoming" | "Active" | "Overdue" | "Closed if (now < start) return "Upcoming"; if (now >= start && now <= end) return "Active"; - if (now > end) return "Overdue"; + if (now > loa.extended_till || end) return "Overdue"; return "Overdue"; // fallback }