From c5ccfccf3e54756f4e7beb29d147d3cbaea403da Mon Sep 17 00:00:00 2001 From: Dicken Date: Thu, 4 Jun 2026 10:02:36 +0200 Subject: [PATCH] Dashboard: Build-Timestamp als lesbares Datum formatiert (TT.MM.JJJJ HH:MM) --- frontend/src/App.jsx | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/frontend/src/App.jsx b/frontend/src/App.jsx index 8b0df8b..fcc1f24 100644 --- a/frontend/src/App.jsx +++ b/frontend/src/App.jsx @@ -1347,7 +1347,11 @@ function ChangelogModal({ user, toast, onClose, onRead }) {
- {e.build_time || fmtDate(e.created_at)} + {e.build_time + ? (isNaN(Number(e.build_time)) + ? e.build_time // altes Format: bereits lesbarer String + : new Date(Number(e.build_time)*1000).toLocaleString('de-DE',{timeZone:'Europe/Berlin',day:'2-digit',month:'2-digit',year:'numeric',hour:'2-digit',minute:'2-digit'})) + : fmtDate(e.created_at)} {isAdmin && (