[tvOS] Fix fresh tomato being shown for all rating values (#1421)
This commit is contained in:
parent
3ee2abec5c
commit
98e4ae9917
|
@ -23,9 +23,9 @@ extension ItemView.AboutView {
|
||||||
VStack {
|
VStack {
|
||||||
Group {
|
Group {
|
||||||
if criticRating >= 60 {
|
if criticRating >= 60 {
|
||||||
Image("tomato.fresh")
|
Image(.tomatoFresh)
|
||||||
} else {
|
} else {
|
||||||
Image("tomato.fresh")
|
Image(.tomatoRotten)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.symbolRenderingMode(.multicolor)
|
.symbolRenderingMode(.multicolor)
|
||||||
|
|
Loading…
Reference in New Issue