👽 Update follow server side IM changes
This commit is contained in:
@ -147,6 +147,18 @@ class ChatMessage extends StatelessWidget {
|
||||
content: data.body['text'],
|
||||
isAutoWarp: true,
|
||||
),
|
||||
if (data.type == 'messages.delete' &&
|
||||
data.relatedEventId != null)
|
||||
Row(
|
||||
children: [
|
||||
const Icon(Symbols.delete),
|
||||
const Gap(8),
|
||||
Text(
|
||||
'messageDeleted'
|
||||
.tr(args: ['#${data.relatedEventId}']),
|
||||
),
|
||||
],
|
||||
),
|
||||
],
|
||||
),
|
||||
)
|
||||
|
Reference in New Issue
Block a user