Add device_id to devices display

(it turns out to be quite useful)
This commit is contained in:
Richard van der Hoff 2016-08-11 16:16:53 +01:00
parent 3704e2c648
commit 55a28564b9
2 changed files with 5 additions and 1 deletions

View file

@ -109,6 +109,9 @@ export default class DevicesPanelEntry extends React.Component {
return (
<div className="mx_DevicesPanel_device">
<div className="mx_DevicesPanel_deviceId">
{device.device_id}
</div>
<div className="mx_DevicesPanel_deviceName">
<EditableTextContainer initialValue={device.display_name}
onSubmit={this._onDisplayNameChanged}