mirror of
https://github.com/transmission/transmission
synced 2024-12-25 01:03:01 +00:00
feat: display full client name in tooltip (#6224)
This commit is contained in:
parent
077dcc8f9a
commit
707e51aa9d
1 changed files with 4 additions and 1 deletions
|
@ -617,7 +617,10 @@ export class Inspector extends EventTarget {
|
|||
setTextContent(td, peer.address);
|
||||
td.setAttribute('title', peer.address);
|
||||
},
|
||||
(peer, td) => setTextContent(td, peer.clientName),
|
||||
(peer, td) => {
|
||||
setTextContent(td, peer.clientName);
|
||||
td.setAttribute('title', peer.clientName);
|
||||
},
|
||||
];
|
||||
|
||||
const rows = [];
|
||||
|
|
Loading…
Reference in a new issue