()
| 21217 | |
| 21218 | // Load threat intelligence data when tab is shown |
| 21219 | async function loadThreatIntelData() { |
| 21220 | try { |
| 21221 | const statusParam = encodeURIComponent(threatIntelStatusFilter || 'open'); |
| 21222 | // Load grouped vulnerabilities |
| 21223 | const response = await networkAwareFetch(`/api/vulnerabilities/grouped?status=${statusParam}`); |
| 21224 | if (response.ok) { |
| 21225 | const data = await response.json(); |
no test coverage detected