()
| 14297 | html += '</div>'; |
| 14298 | container.innerHTML = html; |
| 14299 | } |
| 14300 | |
| 14301 | function toggleVulnHost(ip) { |
| 14302 | const containerId = `vuln-host-${ip.replace(/\./g, '-')}`; |
| 14303 | const chevronId = `vuln-chevron-${ip.replace(/\./g, '-')}`; |
| 14304 | const container = document.getElementById(containerId); |
| 14305 | const chevron = document.getElementById(chevronId); |
nothing calls this directly
no test coverage detected