Fixed: Show calculated (rather than stored) custom format score on season and series history, to match episode history

pull/5403/head
bpoxy 1 year ago committed by GitHub
parent ddb25b1095
commit 5e761f766c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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…
Cancel
Save