commit 9a83872a229fabec4acb44812694c9fdb941a6d8
parent 988da17b06afe1bd4918734f93d90bc1b5af509e
Author: ericholguin <ericholguin@apache.org>
Date: Mon, 11 Mar 2024 08:27:43 -0600
ui: Add proxy view to selected events
This patch adds the proxy view to selected events.
Fixes: https://github.com/damus-io/damus/issues/2033
Changelog-Added: Proxy Tags are now viewable on Selected Events
Signed-off-by: ericholguin <ericholguin@apache.org>
Signed-off-by: William Casarin <jb55@jb55.com>
Diffstat:
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/damus/Views/Events/SelectedEventView.swift b/damus/Views/Events/SelectedEventView.swift
@@ -52,7 +52,11 @@ struct SelectedEventView: View {
ReplyDescription(event: event, replying_to: replying_to, ndb: damus.ndb)
.padding(.horizontal)
}
-
+
+ ProxyView(event: event)
+ .padding(.top, 5)
+ .padding(.horizontal)
+
EventBody(damus_state: damus, event: event, size: size, options: [.wide])
Mention