Fixed: Show calculated (rather than stored) custom format score on season and series history, to match episode history
This commit is contained in:
parent
ddb25b1095
commit
5e761f766c
|
@ -75,7 +75,8 @@ class SeriesHistoryRow extends Component {
|
|||
data,
|
||||
fullSeries,
|
||||
series,
|
||||
episode
|
||||
episode,
|
||||
customFormatScore
|
||||
} = this.props;
|
||||
|
||||
const {
|
||||
|
@ -145,7 +146,7 @@ class SeriesHistoryRow extends Component {
|
|||
<TableRowCell className={styles.customFormatScore}>
|
||||
<Tooltip
|
||||
anchor={
|
||||
formatPreferredWordScore(data.customFormatScore, customFormats.length)
|
||||
formatPreferredWordScore(customFormatScore, customFormats.length)
|
||||
}
|
||||
tooltip={<EpisodeFormats formats={customFormats} />}
|
||||
position={tooltipPositions.BOTTOM}
|
||||
|
@ -190,6 +191,7 @@ SeriesHistoryRow.propTypes = {
|
|||
fullSeries: PropTypes.bool.isRequired,
|
||||
series: PropTypes.object.isRequired,
|
||||
episode: PropTypes.object.isRequired,
|
||||
customFormatScore: PropTypes.number.isRequired,
|
||||
onMarkAsFailedPress: PropTypes.func.isRequired
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue