Limit list item lines

This commit is contained in:
Christoph Hagen
2025-02-17 13:39:03 +01:00
parent 964c644922
commit 1e5fed5bbc
4 changed files with 4 additions and 0 deletions

View File

@ -35,6 +35,7 @@ private struct LocalizedPostListItem: View {
var body: some View {
HStack {
Text(post.title ?? id)
.lineLimit(1)
Spacer()
}
}