feat: proxy provider update button

This commit is contained in:
mrFq1
2023-05-23 23:44:45 +08:00
parent 0a6ff05168
commit f0edccd4fb
5 changed files with 54 additions and 17 deletions
@@ -52,8 +52,8 @@ struct ProxyProvidersRowView: View {
}
var listView: some View {
ForEach(providers, id: \.id) {
ProxyProviderInfoView(provider: $0)
ForEach(providers, id: \.id) { provider in
ProxyProviderInfoView(provider: provider, withUpdateButton: true)
}
}