Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion hosts/omarchy/models/PanelModel.js
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ function pendingDeviceRows(syncthing) {
name: name,
address: String(device.address || ""),
shortId: shortId,
label: String(name || shortId) + " wants to connect · " + shortId
label: String(name || shortId) + " (" + shortId + ") wants to connect"
})
}
return rows
Expand Down
2 changes: 1 addition & 1 deletion tests/run.qml
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ QtObject {
compare(remotes[0].label, "xps · 1 folder", "remote folder count")
compare(remotes[0].connected, false, "remote connection state")
var pending = PanelModel.pendingDeviceRows(service)
compare(pending[0].label, "xps wants to connect · AAAAAAA",
compare(pending[0].label, "xps (AAAAAAA) wants to connect",
"incoming request label")
var nearby = PanelModel.nearbyDeviceOptions(service)
compare(nearby[0], { value: "", label: "Custom Device ID" },
Expand Down
Loading