Update HistoryView to limit content line display to one line for improved UI clarity in HistoryItemRow.

main
v504 2 months ago
parent 4a4f753574
commit 2d231efa2d

@ -568,7 +568,7 @@ struct HistoryItemRow: View {
HStack { HStack {
Text(item.content ?? "") Text(item.content ?? "")
.font(.headline) .font(.headline)
.lineLimit(2) .lineLimit(1)
Spacer() Spacer()

Loading…
Cancel
Save