Merge pull request #2251 from stuartbreckenridge/master

2237
This commit is contained in:
Maurice Parker 2020-07-11 11:45:17 -05:00 committed by GitHub
commit 7aa1fb1c4a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -135,7 +135,7 @@ struct AddWebFeedView: View {
HStack(alignment: .top) {
if let image = viewModel.smallIconImage(for: viewModel.containers[index]) {
Image(rsImage: image)
.foregroundColor(.accentColor)
.foregroundColor(Color("AccentColor"))
}
Text("\(containerName)")
.tag(index)
@ -144,7 +144,7 @@ struct AddWebFeedView: View {
HStack(alignment: .top) {
if let image = viewModel.smallIconImage(for: viewModel.containers[index]) {
Image(rsImage: image)
.foregroundColor(.accentColor)
.foregroundColor(Color("AccentColor"))
}
Text(containerName)
.tag(index)