From d8a64d479f54ea6a41c268f4f060536724e5bb7f Mon Sep 17 00:00:00 2001 From: m3taversal Date: Tue, 14 Apr 2026 11:57:01 +0100 Subject: [PATCH] epimetheus: remove dead disagreement_types UI card MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Ganymede review finding — the review-summary API no longer returns disagreement_types, so the card always showed "No disagreements." Removed the JS loop and HTML table. Pentagon-Agent: Epimetheus <0144398e-4ed3-4fe2-95a3-3d72e1abf887> Co-Authored-By: Claude Opus 4.6 (1M context) --- ops/diagnostics/dashboard_epistemic.py | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/ops/diagnostics/dashboard_epistemic.py b/ops/diagnostics/dashboard_epistemic.py index cb3dd5ef7..6074f4243 100644 --- a/ops/diagnostics/dashboard_epistemic.py +++ b/ops/diagnostics/dashboard_epistemic.py @@ -194,12 +194,6 @@ fetch('/api/review-summary?days=30') reasonRows += '' + esc(r.reason) + '' + r.count + ''; }} - // Disagreement types - let disagreeRows = ''; - for (const d of (data.disagreement_types || [])) {{ - disagreeRows += '' + esc(d.type) + '' + d.count + ''; - }} - el.innerHTML = `
Total Reviews
${{data.total}}
@@ -215,13 +209,6 @@ fetch('/api/review-summary?days=30') ${{reasonRows || 'No rejections'}}
-
-
Disagreement Types
- - - ${{disagreeRows || ''}} -
TypeCount
No disagreements
-
`; }}).catch(() => {{ document.getElementById('review-container').innerHTML =