Compare commits
1 Commits
nprofile-q
...
profile-na
| Author | SHA1 | Date | |
|---|---|---|---|
|
c1b4f9f5d5
|
@@ -42,6 +42,9 @@ struct MutelistView: View {
|
|||||||
.swipeActions {
|
.swipeActions {
|
||||||
RemoveAction(pubkey: pubkey)
|
RemoveAction(pubkey: pubkey)
|
||||||
}
|
}
|
||||||
|
.onTapGesture {
|
||||||
|
damus_state.nav.push(route: Route.ProfileByKey(pubkey: pubkey))
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.navigationTitle(NSLocalizedString("Muted Users", comment: "Navigation title of view to see list of muted users."))
|
.navigationTitle(NSLocalizedString("Muted Users", comment: "Navigation title of view to see list of muted users."))
|
||||||
.onAppear {
|
.onAppear {
|
||||||
|
|||||||
@@ -72,9 +72,10 @@ struct RelayDetailView: View {
|
|||||||
|
|
||||||
if let pubkey = nip11.pubkey {
|
if let pubkey = nip11.pubkey {
|
||||||
Section(NSLocalizedString("Admin", comment: "Label to display relay contact user.")) {
|
Section(NSLocalizedString("Admin", comment: "Label to display relay contact user.")) {
|
||||||
NavigationLink(value: Route.ProfileByKey(pubkey: pubkey), label: {
|
UserViewRow(damus_state: state, pubkey: pubkey)
|
||||||
UserViewRow(damus_state: state, pubkey: pubkey)
|
.onTapGesture {
|
||||||
})
|
state.nav.push(route: Route.ProfileByKey(pubkey: pubkey))
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if let relay_connection {
|
if let relay_connection {
|
||||||
|
|||||||
Reference in New Issue
Block a user