diff --git a/plugins/sentinel/dashboard.html b/plugins/sentinel/dashboard.html
index c2fceef..026cbc8 100644
--- a/plugins/sentinel/dashboard.html
+++ b/plugins/sentinel/dashboard.html
@@ -187,7 +187,6 @@
(sysInfo.trim() ? '
'+esc(sysInfo)+'
' : '')+
''+esc(n.url||'')+'
'+
(n.notes ? '📝 '+esc(n.notes)+'
' : '')+
- ''+
''+
''+
'
'+
@@ -256,8 +255,6 @@
}
var infoR = card.querySelector('.col-info');
if (infoR) infoR.textContent = (n.last_seen ? new Date(n.last_seen*1000).toLocaleTimeString() : '—');
- var timeEl = card.querySelector('.node-time');
- if (timeEl) timeEl.innerHTML = '
'+(n.last_seen ? new Date(n.last_seen*1000).toLocaleTimeString() : '—')+'
';
} else {
// 网格模式 — oldCpu/oldMem 已在上面读取(在setAttribute之前)
var hasMetricBar = body.querySelector('.metric-bar');