From 8943000ec5e3116baac795768c32d7ed533b1537 Mon Sep 17 00:00:00 2001 From: Local Dev Date: Tue, 8 Sep 2026 02:23:27 +0200 Subject: [PATCH] fix(theseus/settings): Performance/Privacy/Extensions sections were unreachable MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The sections array in showSection() still listed 'naming' — the id I deleted when Registries got folded into General in 0.3.21. Clicking Performance / Privacy / Extensions in the sidebar looked up getElementById('naming'), got null, and threw a TypeError setting .hidden on it. The loop crashed before the target section was un-hidden, so nothing appeared to happen — the currently-shown section stayed visible and the click looked like a no-op. One-line fix: drop 'naming' from the sections array. Also documented why it's absent so no one puts it back. --- settings.html | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/settings.html b/settings.html index aef65d5..1b75ab8 100644 --- a/settings.html +++ b/settings.html @@ -560,7 +560,11 @@