From bf06993b63b98bf6add16947f348dbdc67803698 Mon Sep 17 00:00:00 2001 From: Rene Fichtmueller Date: Mon, 6 Apr 2026 17:07:05 +0200 Subject: [PATCH] ui: show creation time (HH:MM) alongside date in blog list --- packages/dashboard/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/dashboard/index.html b/packages/dashboard/index.html index 80cc48b..d820681 100644 --- a/packages/dashboard/index.html +++ b/packages/dashboard/index.html @@ -4335,7 +4335,7 @@ async function loadBlogDrafts() { + '' + esc(gen || 'template') + '' + '' + esc(d.word_count) + ' words' + (d.linkedin_post ? '👤 LI' : '') - + '' + new Date(d.created_at).toLocaleDateString() + '' + + '' + new Date(d.created_at).toLocaleString('de-DE', {day:'2-digit',month:'2-digit',year:'numeric',hour:'2-digit',minute:'2-digit'}) + '' + ''; }).join('') || '
No drafts yet — click a card above to generate
');