From 6a9c02cfd8d9a6dec091f6d2602a3a1ca8951ca9 Mon Sep 17 00:00:00 2001 From: TheFlow Date: Sat, 25 Oct 2025 11:50:54 +1300 Subject: [PATCH] fix(audit): add missing renderAuditTable() call to renderDashboard() MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Recent Decisions table was not loading because renderAuditTable() was not being called in the renderDashboard() function. Added renderAuditTable() call to ensure the table renders with the 10 most recent decisions. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- public/js/admin/audit-analytics.js | 1 + 1 file changed, 1 insertion(+) diff --git a/public/js/admin/audit-analytics.js b/public/js/admin/audit-analytics.js index 332342c7..3f24c951 100644 --- a/public/js/admin/audit-analytics.js +++ b/public/js/admin/audit-analytics.js @@ -69,6 +69,7 @@ function renderDashboard() { renderServiceHealth24h(); renderViolations7days(); renderTimelineChart(); + renderAuditTable(); } // Update summary cards