(id, val)
| 17922 | function renderWifiInterfaceSwitch(interfaces = []) { |
| 17923 | setWifiInterfaceMetadata(interfaces); |
| 17924 | const switchContainer = document.getElementById('wifi-interface-switch'); |
| 17925 | const buttonsContainer = document.getElementById('wifi-interface-switch-buttons'); |
| 17926 | if (!switchContainer || !buttonsContainer) { |
| 17927 | return; |
| 17928 | } |
| 17929 | |
| 17930 | const connectedInterfaces = wifiInterfaceMetadata.filter(iface => iface && iface.connected); |
no outgoing calls
no test coverage detected