Skip to content
Merged
5 changes: 5 additions & 0 deletions .changeset/fresh-hats-kneel.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@rocket.chat/meteor": patch
---

Fixes an issue where words are breaking mid-character in user card's bio
2 changes: 1 addition & 1 deletion apps/meteor/client/components/UserCard/UserCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const clampStyle = css`
overflow: hidden;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
word-break: break-all;
word-break: break-word;
`;

type UserCardProps = {
Expand Down
Loading