[FIX] Removing truncation from profile (#20352)

pull/21199/head
Anant Bhasin 5 years ago committed by GitHub
parent 6e97e36131
commit 00a8878100
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      client/views/room/contextualBar/UserInfo/index.js

@ -64,7 +64,7 @@ export const UserInfo = React.memo(function UserInfo({
<Margins block='x4'>
<UserCard.Username name={(showRealNames && name) || username || name} status={status} />
<Info>{customStatus}</Info>
<Info withTruncatedText={false}>{customStatus}</Info>
{!!roles && <>
<Label>{t('Roles')}</Label>
@ -117,7 +117,7 @@ export const UserInfo = React.memo(function UserInfo({
{ customFields && Object.entries(customFields).map(([label, value]) => <React.Fragment key={label}>
<Label>{t(label)}</Label>
<Info>{value}</Info>
<Info withTruncatedText={false}>{value}</Info>
</React.Fragment>) }
<Label>{t('Created_at')}</Label>

Loading…
Cancel
Save