From 5966fe5390eb4a41a7d50c40a0367133001abaa5 Mon Sep 17 00:00:00 2001 From: pablone Date: Thu, 27 Mar 2025 09:09:50 +0100 Subject: [PATCH] fix: correct badge color logic in EntryList based on time difference --- src/pages/Entry/EntryList.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/Entry/EntryList.vue b/src/pages/Entry/EntryList.vue index 556f89b0e..e42380fa3 100644 --- a/src/pages/Entry/EntryList.vue +++ b/src/pages/Entry/EntryList.vue @@ -248,7 +248,7 @@ function getBadgeAttrs(row) { let timeDiff = today - timeTicket; - if (timeDiff > 0) return { color: 'info', 'text-color': 'black' }; + if (timeDiff < 0) return { color: 'warning', 'text-color': 'black' }; switch (row.entryTypeCode) { case 'regularization': case 'life': @@ -273,7 +273,7 @@ function getBadgeAttrs(row) { default: break; } - if (timeDiff < 0) return { color: 'warning', 'text-color': 'black' }; + if (timeDiff > 0) return { color: 'info', 'text-color': 'black' }; return { color: 'transparent' }; }