1
0
mirror of git://jb55.com/damus synced 2024-09-18 19:23:49 +00:00

don't make highlighted event clickable in details view

Signed-off-by: William Casarin <jb55@jb55.com>
This commit is contained in:
William Casarin 2022-04-16 15:38:25 -07:00
parent 721471cf0a
commit 36043cf20a

View File

@ -91,13 +91,16 @@ struct EventDetailView: View {
var body: some View {
ScrollView {
ForEach(events, id: \.id) { ev in
let evdet = EventDetailView(event: ev, pool: pool, profiles: profiles)
.navigationBarTitle("Note")
NavigationLink(destination: evdet) {
if ev.id == event.id {
EventView(event: ev, profile: self.profiles[ev.pubkey]?.profile, highlighted: ev.id == event.id)
} else {
let evdet = EventDetailView(event: ev, pool: pool, profiles: profiles)
.navigationBarTitle("Note")
NavigationLink(destination: evdet) {
EventView(event: ev, profile: self.profiles[ev.pubkey]?.profile, highlighted: ev.id == event.id)
}
.buttonStyle(PlainButtonStyle())
}
.buttonStyle(PlainButtonStyle())
//EventView(event: ev, profile: self.profiles[ev.pubkey]?.profile, highlighted: ev.id == event.id)
}
}
.padding()