fix(audit): add missing renderAuditTable() call to renderDashboard()
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 <noreply@anthropic.com>
This commit is contained in:
parent
1682a77181
commit
48f0d283b4
1 changed files with 1 additions and 0 deletions
|
|
@ -69,6 +69,7 @@ function renderDashboard() {
|
|||
renderServiceHealth24h();
|
||||
renderViolations7days();
|
||||
renderTimelineChart();
|
||||
renderAuditTable();
|
||||
}
|
||||
|
||||
// Update summary cards
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue