From f9339440f216ce841b5e9f35401f05dabda7081e Mon Sep 17 00:00:00 2001 From: William Casarin Date: Mon, 3 Apr 2023 11:21:52 -0700 Subject: [PATCH] Truncate long text in notification items Changelog-Fixed: Truncate long text in notification items --- damus/Views/Notifications/EventGroupView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/damus/Views/Notifications/EventGroupView.swift b/damus/Views/Notifications/EventGroupView.swift index 11da278f..d9e61d12 100644 --- a/damus/Views/Notifications/EventGroupView.swift +++ b/damus/Views/Notifications/EventGroupView.swift @@ -212,7 +212,7 @@ struct EventGroupView: View { NavigationLink(destination: dest) { VStack(alignment: .leading) { GroupDescription - EventBody(damus_state: state, event: event, size: .normal, options: []) + EventBody(damus_state: state, event: event, size: .normal, options: [.truncate_content]) .padding([.top], 1) .foregroundColor(.gray) }