Add the deviceId back to memberdeviceinfo
It was removed by @ara4n in 5fa5489
, but it's still useful!
This commit is contained in:
parent
2f7b4f74fd
commit
dd2da20031
1 changed files with 3 additions and 1 deletions
|
@ -46,8 +46,10 @@ export default class MemberDeviceInfo extends React.Component {
|
|||
(this.props.device.getDisplayName() ? this.props.device.getDisplayName() : "") + " (" + this.props.device.deviceId + ")" :
|
||||
this.props.device.getDisplayName();
|
||||
|
||||
// add the deviceId as a titletext to help with debugging
|
||||
return (
|
||||
<div className="mx_MemberDeviceInfo" >
|
||||
<div className="mx_MemberDeviceInfo"
|
||||
title={"device id: " + this.props.device.deviceId} >
|
||||
<div className="mx_MemberDeviceInfo_deviceInfo">
|
||||
<div className="mx_MemberDeviceInfo_deviceId">
|
||||
{deviceName}
|
||||
|
|
Loading…
Reference in a new issue