From 61715e14f61699acc205ca2091b25262724c3200 Mon Sep 17 00:00:00 2001 From: Chuck Date: Tue, 30 Jun 2026 10:02:08 -0400 Subject: [PATCH] fix(web): restore missing brace in Tools tab HTMX-fallback path MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The `else if (++tries > 100)` block added by #373 was missing its closing `}`, leaving the setInterval arrow function syntactically unclosed. This caused a JS parse error that silenced the entire 1400-line script block — including the EventSource setup — so the connection-status indicator never left its default "Disconnected" state for all users after updating. Co-Authored-By: Claude Sonnet 4.6 --- web_interface/templates/v3/base.html | 1 + 1 file changed, 1 insertion(+) diff --git a/web_interface/templates/v3/base.html b/web_interface/templates/v3/base.html index 5dea81d5..c69c75ba 100644 --- a/web_interface/templates/v3/base.html +++ b/web_interface/templates/v3/base.html @@ -1938,6 +1938,7 @@

contentEl.innerHTML = '

Failed to load Tools. Please refresh the page.

'; }); } + } }, 100); },