(tbody, html)
| 18172 | <div class="text-xs text-yellow-300 bg-yellow-900/40 border border-yellow-800 rounded px-3 py-2 mb-3"> |
| 18173 | ${escapeHtml(data.warning)} |
| 18174 | </div> |
| 18175 | ` : ''; |
| 18176 | const sectionHeader = interfaceName ? ` |
| 18177 | <div class="text-xs text-gray-400 mb-3"> |
| 18178 | Showing results for interface <span class="font-semibold text-gray-100">${escapeHtml(interfaceName)}</span> |
| 18179 | </div> |
| 18180 | ` : ''; |
| 18181 | if (interfaceName) { |
| 18182 | networksList.dataset.interface = interfaceName; |
| 18183 | } else { |
| 18184 | delete networksList.dataset.interface; |
| 18185 | } |
| 18186 | |
| 18187 | // Extract networks from response |
| 18188 | if (data.available) { |
no outgoing calls
no test coverage detected