App Layout: Space names in the bottom sheet should wrap to 1 line only

This commit is contained in:
Gil Eluard 2022-12-28 11:03:15 +01:00
parent c4d66d6364
commit 036842e1d3
2 changed files with 2 additions and 0 deletions

View file

@ -57,6 +57,7 @@ struct SpaceSelectorListRow: View {
.clipShape(RoundedRectangle(cornerRadius: 8))
}
Text(displayName ?? "")
.lineLimit(1)
.foregroundColor(theme.colors.primaryContent)
.font(theme.fonts.bodySB)
.accessibility(identifier: "itemName")

1
changelog.d/6579.bugfix Normal file
View file

@ -0,0 +1 @@
App Layout: wrap Space names to 1 line only in the bottom sheet