Skip to content
Snippets Groups Projects
Unverified Commit c2f33766 authored by gabriellsh's avatar gabriellsh Committed by GitHub
Browse files

fix: Mentions showing usernames instead of names on smaller screens (#30705)

parent a5f79eb6
No related branches found
No related tags found
No related merge requests found
---
"@rocket.chat/gazzodown": patch
---
fixed an issue with mentions showing usernames instead of names on smaller screens
......@@ -13,14 +13,11 @@ const handleUserMention = (mention: string | undefined, withSymbol: boolean | un
const UserMentionElement = ({ mention }: UserMentionElementProps): ReactElement => {
const t = useTranslation();
const { resolveUserMention, onUserMentionClick, isMobile, ownUserId, useRealName, showMentionSymbol } =
useContext(MarkupInteractionContext);
const { resolveUserMention, onUserMentionClick, ownUserId, useRealName, showMentionSymbol } = useContext(MarkupInteractionContext);
const resolved = useMemo(() => resolveUserMention?.(mention), [mention, resolveUserMention]);
const handleClick = useMemo(() => (resolved ? onUserMentionClick?.(resolved) : undefined), [resolved, onUserMentionClick]);
const showRealName = useRealName && !isMobile;
if (mention === 'all') {
return (
<Message.Highlight title={t('Mentions_all_room_members')} variant='relevant'>
......@@ -49,7 +46,7 @@ const UserMentionElement = ({ mention }: UserMentionElementProps): ReactElement
onClick={handleClick}
data-uid={resolved._id}
>
{handleUserMention((showRealName ? resolved.name : resolved.username) ?? mention, showMentionSymbol)}
{handleUserMention((useRealName ? resolved.name : resolved.username) ?? mention, showMentionSymbol)}
</Message.Highlight>
);
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment