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 && (