Clicking on relay numbers on home view brings you to config
Changelog-Changed: Clicking relay numbers now goes to relay config Closes: #491
This commit is contained in:
committed by
William Casarin
parent
09547529ad
commit
0902548336
@@ -260,9 +260,11 @@ struct ContentView: View {
|
|||||||
ToolbarItem(placement: .navigationBarTrailing) {
|
ToolbarItem(placement: .navigationBarTrailing) {
|
||||||
HStack(alignment: .center) {
|
HStack(alignment: .center) {
|
||||||
if home.signal.signal != home.signal.max_signal {
|
if home.signal.signal != home.signal.max_signal {
|
||||||
Text("\(home.signal.signal)/\(home.signal.max_signal)", comment: "Fraction of how many of the user's relay servers that are operational.")
|
NavigationLink(destination: RelayConfigView(state: damus_state!)) {
|
||||||
.font(.callout)
|
Text("\(home.signal.signal)/\(home.signal.max_signal)", comment: "Fraction of how many of the user's relay servers that are operational.")
|
||||||
.foregroundColor(.gray)
|
.font(.callout)
|
||||||
|
.foregroundColor(.gray)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user