diff --git a/assets/js/app.js b/assets/js/app.js index b479b61..c468d6e 100644 --- a/assets/js/app.js +++ b/assets/js/app.js @@ -5197,20 +5197,30 @@ function _applyInsightPhase() { // ===== DASHBOARD ===== function renderDashboardLocationCards(counts) { - const container = document.getElementById('dashboard-location-cards'); - if (!container) return; + const statsContainer = document.getElementById('dashboard-stats'); + if (!statsContainer) return; const keys = Object.keys(LOCATIONS); - container.innerHTML = keys.map(key => { + const cardsHtml = keys.map(key => { const info = LOCATIONS[key]; const count = counts[key] !== undefined ? counts[key] : '-'; return ` -