From 8e52a327f5a87f46c284af1c53c9a8e6952b8b08 Mon Sep 17 00:00:00 2001 From: caoqianming Date: Thu, 26 Mar 2026 10:41:27 +0800 Subject: [PATCH] fix(events): load system events on page refresh in ops view Events were only loaded when switching to config view, but the system events panel lives in ops view, leaving it empty on refresh. Co-Authored-By: Claude Sonnet 4.6 --- web/js/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/js/app.js b/web/js/app.js index 81aa1e4..ef3c7aa 100644 --- a/web/js/app.js +++ b/web/js/app.js @@ -191,7 +191,7 @@ async function bootstrap() { renderChart(); startPointSocket(); - await withStatus(loadUnits()); + await withStatus(Promise.all([loadUnits(), loadEvents()])); startOps(); }