Remove flutter chat #26
1 changed files with 3 additions and 1 deletions
fix incorrectly ellipsised messages
commit
ffdcc89de0
|
|
@ -252,7 +252,9 @@ class EventRenderer extends ConsumerWidget {
|
|||
style: textStyle,
|
||||
text: body,
|
||||
maxLines: maxLines,
|
||||
overflow: TextOverflow.ellipsis,
|
||||
overflow: maxLines == null
|
||||
? null
|
||||
: TextOverflow.ellipsis,
|
||||
options: LinkifyOptions(
|
||||
humanize: false,
|
||||
),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue