mirror of
https://github.com/transmission/transmission.git
synced 2025-12-24 20:35:36 +00:00
feat: display full peer address in tooltip (#6081)
This commit is contained in:
@@ -603,7 +603,10 @@ export class Inspector extends EventTarget {
|
||||
setTextContent(td, peer.flagStr);
|
||||
td.setAttribute('title', Inspector._peerStatusTitle(peer.flagStr));
|
||||
},
|
||||
(peer, td) => setTextContent(td, peer.address),
|
||||
(peer, td) => {
|
||||
setTextContent(td, peer.address);
|
||||
td.setAttribute('title', peer.address);
|
||||
},
|
||||
(peer, td) => setTextContent(td, peer.clientName),
|
||||
];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user