Skip to content

Commit

Permalink
Merge pull request #1098 from GetStream/fix/reaction_card_text_overflow
Browse files Browse the repository at this point in the history
fix(ui): Name text overflow in reaction card
  • Loading branch information
imtoori authored Apr 22, 2022
2 parents dd0f3eb + 926a261 commit 17ca07e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/stream_chat_flutter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
## Upcoming

🐞 Fixed
- [[#842]](https://github.com/GetStream/stream-chat-flutter/issues/842): show date divider for first message.

- [[#1067]](https://github.com/GetStream/stream-chat-flutter/issues/1067): Fix name text overflow in reaction card.
- [[#842]](https://github.com/GetStream/stream-chat-flutter/issues/842): show date divider for first message.

## 3.6.1

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,8 @@ class MessageReactionsModal extends StatelessWidget {
reaction.user!.name.split(' ')[0],
style: chatThemeData.textTheme.footnoteBold,
textAlign: TextAlign.center,
overflow: TextOverflow.ellipsis,
maxLines: 1,
),
],
),
Expand Down

0 comments on commit 17ca07e

Please sign in to comment.