mirror of https://github.com/vector-im/riot-web
Update src/components/views/right_panel/UserInfo.tsx
Co-authored-by: Michael Telatynski <7t3chguy@googlemail.com>pull/21833/head
parent
1f2895dbe9
commit
fa307ee14c
|
@ -188,7 +188,7 @@ function DeviceItem({userId, device}: {userId: string, device: IDevice}) {
|
|||
};
|
||||
|
||||
let deviceName;
|
||||
if (device.getDisplayName() === null || device.getDisplayName().trim() === "") {
|
||||
if (!device.getDisplayName()?.trim()) {
|
||||
deviceName = device.deviceId;
|
||||
} else {
|
||||
deviceName = device.ambiguous ?
|
||||
|
|
Loading…
Reference in New Issue