From 557137421d4dc9ebaeb635fecd2fa69735c01eaa Mon Sep 17 00:00:00 2001 From: Gronod Date: Sun, 17 May 2026 13:02:15 +0100 Subject: [PATCH] fix(history): reload history when showAll toggle changes --- public/app.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/public/app.js b/public/app.js index e63e5e1..7ed05bb 100644 --- a/public/app.js +++ b/public/app.js @@ -94,6 +94,8 @@ function handleShowAllToggle(e) { showAll = e.target.checked; // Re-open stream with updated showAll param startSSE(); + // Reload history with updated showAll param + loadHistory(); } function fadeOutLogin() {