diff --git a/public_html/admin/index.php b/public_html/admin/index.php index 33e36d5..efa6888 100644 --- a/public_html/admin/index.php +++ b/public_html/admin/index.php @@ -3281,7 +3281,7 @@ async function loadGuardian() { const color = _SEV_COLOR[sev] || 'var(--text)'; const icon = _EV_ICON[ev.event_type] || '◈'; const acked = ev.acknowledged; - const ts = ts(ev.created_at); + const evTs = ts(ev.created_at); return ` ${_SEV_ICON[sev]||'◈'} ${sev.toUpperCase()} @@ -3292,7 +3292,7 @@ async function loadGuardian() {
${icon} ${esc(ev.message||'')}
${ev.ai_analysis ? `
${esc(ev.ai_analysis.substring(0,200))}
` : ''} - ${ts} + ${evTs} ${!acked ? `` : 'ACKED'}