diff --git a/src/components/views/right_panel/UserInfo.js b/src/components/views/right_panel/UserInfo.js index 051f92cc9c..e20ab07cae 100644 --- a/src/components/views/right_panel/UserInfo.js +++ b/src/components/views/right_panel/UserInfo.js @@ -183,11 +183,17 @@ function DeviceItem({userId, device}) { (device.getDisplayName() ? device.getDisplayName() : "") + " (" + device.deviceId + ")" : device.getDisplayName(); const trustedLabel = isVerified ? _t("Trusted") : _t("Not trusted"); - return ( -
-
{deviceName}
-
{trustedLabel}
- ); + return ( + +
+
{deviceName}
+
{trustedLabel}
+ + ); } function DevicesSection({devices, userId, loading}) {