mirror of
https://github.com/Radarr/Radarr
synced 2026-01-30 11:22:22 +01:00
Fixed: MovieDetails Files Table not reflecting cutoff status
This commit is contained in:
parent
328477a1c6
commit
fee8244a74
1 changed files with 3 additions and 0 deletions
|
|
@ -71,6 +71,7 @@ class MovieFileEditorRow extends Component {
|
|||
id,
|
||||
relativePath,
|
||||
quality,
|
||||
qualityCutoffNotMet,
|
||||
languages
|
||||
} = this.props;
|
||||
|
||||
|
|
@ -138,6 +139,7 @@ class MovieFileEditorRow extends Component {
|
|||
<MovieQuality
|
||||
className={styles.label}
|
||||
quality={quality}
|
||||
isCutoffNotMet={qualityCutoffNotMet}
|
||||
/>
|
||||
}
|
||||
</TableRowCellButton>
|
||||
|
|
@ -187,6 +189,7 @@ MovieFileEditorRow.propTypes = {
|
|||
size: PropTypes.number.isRequired,
|
||||
relativePath: PropTypes.string.isRequired,
|
||||
quality: PropTypes.object.isRequired,
|
||||
qualityCutoffNotMet: PropTypes.bool.isRequired,
|
||||
languages: PropTypes.arrayOf(PropTypes.object).isRequired,
|
||||
mediaInfo: PropTypes.object.isRequired,
|
||||
onDeletePress: PropTypes.func.isRequired
|
||||
|
|
|
|||
Loading…
Reference in a new issue