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,
|
style: textStyle,
|
||||||
text: body,
|
text: body,
|
||||||
maxLines: maxLines,
|
maxLines: maxLines,
|
||||||
overflow: TextOverflow.ellipsis,
|
overflow: maxLines == null
|
||||||
|
? null
|
||||||
|
: TextOverflow.ellipsis,
|
||||||
options: LinkifyOptions(
|
options: LinkifyOptions(
|
||||||
humanize: false,
|
humanize: false,
|
||||||
),
|
),
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue