From e74d4cf7c682c1ffbbb9d6661ac0c0b7252a54fb Mon Sep 17 00:00:00 2001 From: Kyle Pope Date: Sat, 21 Feb 2026 12:26:47 +0800 Subject: [PATCH] Align date/time column in upcoming widget Give the date column a fixed width (7rem) and right-align it so entries with different date formats (date-only vs datetime) line up. Co-Authored-By: Claude Opus 4.6 --- frontend/src/components/dashboard/UpcomingWidget.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/dashboard/UpcomingWidget.tsx b/frontend/src/components/dashboard/UpcomingWidget.tsx index 4eb0b2b..2ff16eb 100644 --- a/frontend/src/components/dashboard/UpcomingWidget.tsx +++ b/frontend/src/components/dashboard/UpcomingWidget.tsx @@ -48,7 +48,7 @@ export default function UpcomingWidget({ items, days = 7 }: UpcomingWidgetProps) > {item.title} - + {item.datetime ? format(new Date(item.datetime), 'MMM d, h:mm a') : format(new Date(item.date), 'MMM d')}