fix(core/bulk_messaging_action): text overflow

This commit is contained in:
rhunk
2024-02-17 18:03:37 +01:00
parent fa7071284f
commit 353838f19a

View File

@ -235,7 +235,7 @@ class BulkMessagingAction : AbstractAction() {
checked = sortReverseOrder,
onCheckedChange = { sortReverseOrder = it },
)
Text(text = "Reverse order", fontSize = 15.sp, fontWeight = FontWeight.Light)
Text(text = "Reverse order", fontSize = 15.sp, fontWeight = FontWeight.Light, maxLines = 1, overflow = TextOverflow.Ellipsis)
}
}