From fbd734ccd488ee28281f59079612f243eaff5708 Mon Sep 17 00:00:00 2001 From: gramps Date: Tue, 14 Jul 2026 13:36:56 -0700 Subject: [PATCH] fix: privacy badge reads PRIVACY ON / PRIVACY OFF (not bare PRIVACY) --- templates/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/index.html b/templates/index.html index ee5b286..4cc303c 100644 --- a/templates/index.html +++ b/templates/index.html @@ -916,7 +916,7 @@ function togglePrivate() { privateEnabled = !privateEnabled; const badge = document.getElementById('privateBadge'); badge.className = 'badge ' + (privateEnabled ? 'on' : 'off'); - badge.textContent = privateEnabled ? 'PRIVACY' : 'PRIVACY OFF'; + badge.textContent = privateEnabled ? 'PRIVACY ON' : 'PRIVACY OFF'; const searchBtn = document.getElementById('searchBtn'); if (privateEnabled) { if (searchBtn) searchBtn.disabled = true;