parent
5138d7d2e0
commit
61c42171c7
|
@ -135,7 +135,7 @@ struct AddWebFeedView: View {
|
||||||
HStack(alignment: .top) {
|
HStack(alignment: .top) {
|
||||||
if let image = viewModel.smallIconImage(for: viewModel.containers[index]) {
|
if let image = viewModel.smallIconImage(for: viewModel.containers[index]) {
|
||||||
Image(rsImage: image)
|
Image(rsImage: image)
|
||||||
.foregroundColor(.accentColor)
|
.foregroundColor(Color("AccentColor"))
|
||||||
}
|
}
|
||||||
Text("\(containerName)")
|
Text("\(containerName)")
|
||||||
.tag(index)
|
.tag(index)
|
||||||
|
@ -144,7 +144,7 @@ struct AddWebFeedView: View {
|
||||||
HStack(alignment: .top) {
|
HStack(alignment: .top) {
|
||||||
if let image = viewModel.smallIconImage(for: viewModel.containers[index]) {
|
if let image = viewModel.smallIconImage(for: viewModel.containers[index]) {
|
||||||
Image(rsImage: image)
|
Image(rsImage: image)
|
||||||
.foregroundColor(.accentColor)
|
.foregroundColor(Color("AccentColor"))
|
||||||
}
|
}
|
||||||
Text(containerName)
|
Text(containerName)
|
||||||
.tag(index)
|
.tag(index)
|
||||||
|
|
Loading…
Reference in New Issue