Merge branch 'krille/fix-web-chat-list' into 'master'
Fix chat list on web See merge request ChristianPauly/fluffychat-flutter!132
This commit is contained in:
commit
0a45905c26
|
@ -182,7 +182,7 @@ class ChatListItem extends StatelessWidget {
|
|||
child: Text(
|
||||
room.getLocalizedDisplayname(L10n.of(context)),
|
||||
maxLines: 1,
|
||||
overflow: TextOverflow.fade,
|
||||
overflow: TextOverflow.ellipsis,
|
||||
softWrap: false,
|
||||
),
|
||||
),
|
||||
|
@ -239,7 +239,7 @@ class ChatListItem extends StatelessWidget {
|
|||
'',
|
||||
softWrap: false,
|
||||
maxLines: 1,
|
||||
overflow: TextOverflow.fade,
|
||||
overflow: TextOverflow.ellipsis,
|
||||
style: TextStyle(
|
||||
decoration: room.lastEvent?.redacted == true
|
||||
? TextDecoration.lineThrough
|
||||
|
|
Loading…
Reference in a new issue