From 63c1c35c85d20a0aaa5518c45e546404e2f1d9ad Mon Sep 17 00:00:00 2001 From: Felix Delattre Date: Thu, 11 Jun 2026 15:43:10 +0200 Subject: [PATCH] Added site count to webapp. --- index.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/index.html b/index.html index e476407..2e9f63c 100644 --- a/index.html +++ b/index.html @@ -156,6 +156,7 @@ body { margin: 0; font: 13px/1.4 system-ui, sans-serif; background: #f5f5f5; col

EFAST PhenoCam analysis

+
@@ -691,6 +692,7 @@ function buildSiteList() { const entries = Object.entries(sites) .filter(([, m]) => m.has_fusion) .sort(([a], [b]) => a.localeCompare(b)); + qs("#sitesCount").textContent = `${entries.length} site${entries.length === 1 ? "" : "s"}`; if (!entries.length) { list.innerHTML = '
  • No fusion sites yet
  • '; return; } for (const [site, meta] of entries) { const li = document.createElement("li");