Chore: created Spacer component, moved x available networks, added connected networks
Lint & Format (JS/TS) / lint-format (pull_request) Successful in 10s
Python / lint-format (pull_request) Successful in 17s
Python / test (pull_request) Successful in 59s
Lint & Format (Rust) / lint-format (pull_request) Successful in 1m31s
C++ / build (pull_request) Successful in 2m37s

This commit is contained in:
2026-07-08 22:22:03 +02:00
parent 53f0aa80ae
commit aadecbfe44
2 changed files with 47 additions and 15 deletions
+2 -1
View File
@@ -8,8 +8,9 @@ Singleton {
id: root
property bool active: false
readonly property list<Network> connectedNetworks: networks.filter(n => n.connected)
readonly property list<NetworkDevice> devices: Networking.devices.values
readonly property list<Network> knownNetworks: networks.filter(n => n.known)
readonly property list<Network> knownNetworks: networks.filter(n => n.known && !n.known.ConnectionState.Connected)
readonly property list<Network> networks: {
const list = [];
for (const d of wifiDevices) {