Fixed: Manage Tracks not showing whether language/quality meets cutoff

Signed-off-by: Robin Dadswell <robin@dadswell.email>
This commit is contained in:
Qstick
2020-09-06 22:24:20 -04:00
committed by nitsua
parent 8dd3c14132
commit 566d84e22d
2 changed files with 11 additions and 4 deletions
@@ -11,6 +11,7 @@ function BookFileEditorRow(props) {
id,
path,
quality,
qualityCutoffNotMet,
isSelected,
onSelectedChange
} = props;
@@ -29,6 +30,7 @@ function BookFileEditorRow(props) {
<TableRowCell>
<BookQuality
quality={quality}
isCutoffNotMet={qualityCutoffNotMet}
/>
</TableRowCell>
</TableRow>
@@ -39,6 +41,7 @@ BookFileEditorRow.propTypes = {
id: PropTypes.number.isRequired,
path: PropTypes.string.isRequired,
quality: PropTypes.object.isRequired,
qualityCutoffNotMet: PropTypes.bool.isRequired,
isSelected: PropTypes.bool,
onSelectedChange: PropTypes.func.isRequired
};