From 907020e12eba31f19d19edbab50e40386f977078 Mon Sep 17 00:00:00 2001 From: mike Date: Sat, 1 Aug 2026 17:08:14 +0800 Subject: [PATCH] Update App.jsx via upload script - 2026-08-01 17:07:51 --- App.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/App.jsx b/App.jsx index 15d68a0..1961fe6 100644 --- a/App.jsx +++ b/App.jsx @@ -2391,7 +2391,7 @@ function MainApp({ username, onLogout }) { try { const res = await checkJmsLine(line); setJmsLines(prev => prev.map(l => (l.id === id ? { ...l, monitorStatus: res.status, lastChecked: res.checkedAt } : l))); - if (res.status === 'abnormal') notify(`⚠ ${line.name || line.addr} 检测异常`); + if (res.status === 'abnormal') notify(`⚠ ${line.name || line.addr} 检测异常${res.detail ? ':' + res.detail : ''}`); else notify(`${line.name || line.addr} 检测正常`); } catch (e) { setJmsLines(prev => prev.map(l => (l.id === id ? { ...l, monitorStatus: line.monitorStatus } : l)));