mirror of https://github.com/Radarr/Radarr
Fixed: Skip MovieDetails Ratings Render if Null
This commit is contained in:
parent
1137c8d770
commit
74c0e409e7
|
@ -351,10 +351,13 @@ class MovieDetails extends Component {
|
||||||
</span>
|
</span>
|
||||||
}
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
!!ratings &&
|
||||||
<HeartRating
|
<HeartRating
|
||||||
rating={ratings.value}
|
rating={ratings.value}
|
||||||
iconSize={20}
|
iconSize={20}
|
||||||
/>
|
/>
|
||||||
|
}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue