From 5e761f766c11c405eb1a325921dbb5bf3f3d280c Mon Sep 17 00:00:00 2001 From: bpoxy Date: Sun, 12 Feb 2023 15:48:23 -0700 Subject: [PATCH] Fixed: Show calculated (rather than stored) custom format score on season and series history, to match episode history --- frontend/src/Series/History/SeriesHistoryRow.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/frontend/src/Series/History/SeriesHistoryRow.js b/frontend/src/Series/History/SeriesHistoryRow.js index af079182e..97ae92b29 100644 --- a/frontend/src/Series/History/SeriesHistoryRow.js +++ b/frontend/src/Series/History/SeriesHistoryRow.js @@ -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 { } 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 };