fix(history): reload history when showAll toggle changes

This commit is contained in:
2026-05-17 13:02:15 +01:00
parent 71880c6298
commit 557137421d

View File

@@ -94,6 +94,8 @@ function handleShowAllToggle(e) {
showAll = e.target.checked; showAll = e.target.checked;
// Re-open stream with updated showAll param // Re-open stream with updated showAll param
startSSE(); startSSE();
// Reload history with updated showAll param
loadHistory();
} }
function fadeOutLogin() { function fadeOutLogin() {