From 9a802ffd1c1593aece9ff58e47dd01a4366123f6 Mon Sep 17 00:00:00 2001 From: Nic D Date: Thu, 22 Jan 2026 11:09:28 -0500 Subject: [PATCH] fix(timesheets): change comment button color when comment is present (requested by sysadmin) --- src/modules/timesheets/components/shift-list-day-row.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/timesheets/components/shift-list-day-row.vue b/src/modules/timesheets/components/shift-list-day-row.vue index fed22fb..0636484 100644 --- a/src/modules/timesheets/components/shift-list-day-row.vue +++ b/src/modules/timesheets/components/shift-list-day-row.vue @@ -240,7 +240,7 @@ v-if="!ui_store.is_mobile_mode" push dense - :color="shift.is_approved ? 'white' : (holiday ? 'purple-5' : 'accent')" + :color="shift.is_approved ? 'white' : (shift.comment ? 'info' : (holiday ? 'purple-5' : 'accent'))" :icon="shift.comment ? 'chat' : 'chat_bubble_outline'" :text-color="shift.is_approved ? (holiday ? 'purple-5' : 'accent') : 'white'" class="col"