From c528d3921f9709ccfe7b84d44c1d8d674a842abd Mon Sep 17 00:00:00 2001 From: s-vamshi <62489114+s-vamshi@users.noreply.github.com> Date: Thu, 10 Oct 2024 03:45:58 +0530 Subject: [PATCH] fix(web): long usernames in chat truncated (#3949) --- .../chat/ChatUserMessage/ChatUserMessage.module.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/web/components/chat/ChatUserMessage/ChatUserMessage.module.scss b/web/components/chat/ChatUserMessage/ChatUserMessage.module.scss index e55c23876..af3884f39 100644 --- a/web/components/chat/ChatUserMessage/ChatUserMessage.module.scss +++ b/web/components/chat/ChatUserMessage/ChatUserMessage.module.scss @@ -33,6 +33,11 @@ $p-v-size: 2px; display: none; } + .userName { + overflow: hidden; + text-overflow: ellipsis; + } + .userBadges { margin-left: 3px; display: flex;