From 775e185e0f50f32cb545d5b72123eac3f82eb859 Mon Sep 17 00:00:00 2001 From: Marcel Date: Mon, 16 Mar 2026 12:15:23 +0100 Subject: [PATCH] fix: format conversation date with Intl API (20. Dezember 2026) Co-Authored-By: Claude Sonnet 4.6 --- frontend/src/routes/conversations/+page.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/routes/conversations/+page.svelte b/frontend/src/routes/conversations/+page.svelte index 685df600..3b9051a2 100644 --- a/frontend/src/routes/conversations/+page.svelte +++ b/frontend/src/routes/conversations/+page.svelte @@ -253,7 +253,7 @@ : 'text-gray-500'}" > - {doc.documentDate || '—'} + {doc.documentDate ? new Intl.DateTimeFormat('de-DE', { day: 'numeric', month: 'long', year: 'numeric' }).format(new Date(doc.documentDate + 'T12:00:00')) : '—'} {#if doc.location}