mirror of
https://github.com/Radarr/Radarr
synced 2025-02-20 13:27:10 +00:00
Fixed: Lock rating to 0 decimal places in Discovery (#8279)
* Locks to 1 decimal place instead of infinite
This commit is contained in:
parent
7d9183ef12
commit
a006984d5e
1 changed files with 1 additions and 1 deletions
|
@ -73,7 +73,7 @@ function getInfoRowProps(row, props) {
|
|||
return {
|
||||
title: translate('Ratings'),
|
||||
iconName: icons.HEART,
|
||||
label: `${props.ratings.tmdb.value * 10}%`
|
||||
label: `${(props.ratings.tmdb.value * 10).toFixed()}%`
|
||||
};
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue