From a38e9aae5b5b0e3119f0a56a7eb8b80bd1076f9a Mon Sep 17 00:00:00 2001 From: Jon Seager Date: Tue, 10 Feb 2026 20:33:24 +0000 Subject: [PATCH] fix: use shortened dates in expanded timeline cards --- src/presentation/web/views/timeline.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/presentation/web/views/timeline.rs b/src/presentation/web/views/timeline.rs index 89b2cb4..f8d69f2 100644 --- a/src/presentation/web/views/timeline.rs +++ b/src/presentation/web/views/timeline.rs @@ -154,7 +154,7 @@ impl TimelineEventView { id: id.to_string(), entity_type, kind_label, - date_label: occurred_at.format("%b %d, %Y").to_string(), + date_label: occurred_at.format("%b %d, %y").to_string(), relative_date_label: relative_date(occurred_at), time_label: Some(occurred_at.format("%H:%M UTC").to_string()), iso_timestamp: occurred_at.to_rfc3339(),