From 452082c6cbc7d6942673a3238e1f56aae69fe671 Mon Sep 17 00:00:00 2001 From: Vitor Pamplona Date: Wed, 5 Nov 2025 15:53:47 -0500 Subject: [PATCH] Fixes multiline list name --- .../amethyst/ui/screen/loggedIn/lists/list/PeopleListItem.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/lists/list/PeopleListItem.kt b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/lists/list/PeopleListItem.kt index 84bbf9d86..5d1ee32a6 100644 --- a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/lists/list/PeopleListItem.kt +++ b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/lists/list/PeopleListItem.kt @@ -173,7 +173,7 @@ fun PeopleListItem( modifier = Modifier.fillMaxWidth(), horizontalArrangement = Arrangement.SpaceBetween, ) { - Text(peopleList.title) + Text(peopleList.title, maxLines = 1, overflow = TextOverflow.Ellipsis) Column( modifier = NoSoTinyBorders,