From e37a897111c3904b93196804a4bc4771a972577b Mon Sep 17 00:00:00 2001 From: Fabio Date: Sat, 4 Jul 2026 20:40:37 -0400 Subject: [PATCH] =?UTF-8?q?Board:=20fix=20stale=20officeholder=20total=20i?= =?UTF-8?q?n=20header=20(11,285=20=E2=86=92=2013,329)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The "OFFICEHOLDERS" stat was hardcoded to the old v2 Person count; v3 has 13,329. Counties/candidates/districts were unaffected. (Follow-up worth doing: emit these header totals from build_viz.py so they can't go stale.) Co-Authored-By: Claude Opus 4.8 --- viz/board.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/viz/board.html b/viz/board.html index f0034d6ccf..cd2913442c 100644 --- a/viz/board.html +++ b/viz/board.html @@ -281,7 +281,7 @@ function setLens(k){ } // ---- totals ---- -document.getElementById("t-people").textContent="11,285"; +document.getElementById("t-people").textContent="13,329"; document.getElementById("t-counties").textContent=Object.keys(D).length.toLocaleString(); render(); renderLegend(); document.getElementById("stagefoot").textContent=foot[cur];