fix incorrectly ellipsised messages
This commit is contained in:
parent
8d3b94bc40
commit
ffdcc89de0
1 changed files with 3 additions and 1 deletions
|
|
@ -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