diff --git a/frontend/src/App.jsx b/frontend/src/App.jsx index 6ec98a4..7c2700e 100644 --- a/frontend/src/App.jsx +++ b/frontend/src/App.jsx @@ -1200,7 +1200,7 @@ function ChangelogModal({ user, toast, onClose }) { catch(e){ toast(e.message,'error'); } }; - const fmtDate = s => { if (!s) return ''; const d = new Date(s.replace(' ','T')); return isNaN(d)?'':d.toLocaleDateString('de-DE',{day:'2-digit',month:'2-digit',year:'numeric'}); }; + const fmtDate = s => { if (!s) return ''; const d = new Date(s.replace(' ','T')); return isNaN(d)?'':d.toLocaleString('de-DE',{day:'2-digit',month:'2-digit',year:'numeric',hour:'2-digit',minute:'2-digit'}); }; return (