Skip to content

Commit

Permalink
Fix top zap message overflow for real
Browse files Browse the repository at this point in the history
  • Loading branch information
AleksandarIlic committed Apr 24, 2024
1 parent 31865c3 commit c200fb4
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions app/src/main/kotlin/net/primal/android/thread/ThreadScreen.kt
Original file line number Diff line number Diff line change
Expand Up @@ -625,6 +625,8 @@ private fun NoteZapListItem(
Text(
modifier = Modifier.padding(end = 8.dp),
text = noteZap.message,
maxLines = 1,
overflow = TextOverflow.Ellipsis,
color = AppTheme.extraColorScheme.onSurfaceVariantAlt1,
style = AppTheme.typography.bodySmall,
)
Expand Down

0 comments on commit c200fb4

Please sign in to comment.