Browse Source

don't make highlighted event clickable in details view

Signed-off-by: William Casarin <jb55@jb55.com>
profiles-everywhere
William Casarin 3 years ago
parent
commit
36043cf20a
  1. 5
      damus/Views/EventDetailView.swift

5
damus/Views/EventDetailView.swift

@ -91,13 +91,16 @@ struct EventDetailView: View {
var body: some View { var body: some View {
ScrollView { ScrollView {
ForEach(events, id: \.id) { ev in ForEach(events, id: \.id) { ev in
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) let evdet = EventDetailView(event: ev, pool: pool, profiles: profiles)
.navigationBarTitle("Note") .navigationBarTitle("Note")
NavigationLink(destination: evdet) { NavigationLink(destination: evdet) {
EventView(event: ev, profile: self.profiles[ev.pubkey]?.profile, highlighted: ev.id == event.id) 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() .padding()

Loading…
Cancel
Save