Ensure the thread summary sender display name won't wrap to the next line (#5403)

This commit is contained in:
Jorge Martin Espinosa
2025-09-24 10:16:42 +02:00
committed by GitHub
parent b75b79bf40
commit e6b7ab8204

View File

@@ -352,6 +352,8 @@ private fun ThreadSummaryView(
text = latestEvent.senderProfile.getDisambiguatedDisplayName(latestEvent.senderId),
style = ElementTheme.typography.fontBodySmMedium,
color = ElementTheme.colors.textSecondary,
maxLines = 1,
overflow = TextOverflow.Ellipsis,
)
Spacer(modifier = Modifier.width(4.dp))