From 00a8878100b60211c6ab022838d16705ae07d435 Mon Sep 17 00:00:00 2001 From: Anant Bhasin <38764067+aKn1ghtOut@users.noreply.github.com> Date: Wed, 24 Mar 2021 01:00:31 +0530 Subject: [PATCH] [FIX] Removing truncation from profile (#20352) --- client/views/room/contextualBar/UserInfo/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/views/room/contextualBar/UserInfo/index.js b/client/views/room/contextualBar/UserInfo/index.js index 0f9645112e2..18183bc66ee 100644 --- a/client/views/room/contextualBar/UserInfo/index.js +++ b/client/views/room/contextualBar/UserInfo/index.js @@ -64,7 +64,7 @@ export const UserInfo = React.memo(function UserInfo({ - {customStatus} + {customStatus} {!!roles && <> @@ -117,7 +117,7 @@ export const UserInfo = React.memo(function UserInfo({ { customFields && Object.entries(customFields).map(([label, value]) => - {value} + {value} ) }