(scanId)
| 19135 | } |
| 19136 | |
| 19137 | // ============================================================================ |
| 19138 | // DASHBOARD UPDATES |
| 19139 | // ============================================================================ |
| 19140 | |
| 19141 | async function refreshDashboard() { |
| 19142 | try { |
| 19143 | const data = await fetchAPI('/api/status'); |
| 19144 | updateDashboardStatus(data); |
| 19145 | await refreshDashboardStatsForCurrentSelection({ forceRefresh: true, fallbackData: data }); |
| 19146 | } catch (error) { |
| 19147 | console.error('Error refreshing dashboard:', error); |
nothing calls this directly
no test coverage detected