From 777027d4718ab360dedd9c57761a5165936bc6c0 Mon Sep 17 00:00:00 2001 From: jmanczak Date: Sun, 5 Apr 2026 23:37:09 +0200 Subject: [PATCH] use YMD date display format so i don't have to fight americans --- src/web/components/quote.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/web/components/quote.rs b/src/web/components/quote.rs index ef41960..6f159a3 100644 --- a/src/web/components/quote.rs +++ b/src/web/components/quote.rs @@ -25,7 +25,7 @@ pub fn quote(quote: &Quote) -> Markup { } } div class="flex flex-row text-neutral-400 mt-auto pt-4 items-center font-light text-xs" { - p {(quote.timestamp.format("%d/%m/%Y %H:%M"))} + p {(quote.timestamp.format("%Y-%m-%d %H:%M"))} @if let Some(loc) = "e.location { span class="ml-3 scale-[.5]"{(PreEscaped(icons::MAP_PIN))} p { (loc) } }