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
parent 17b5187729
commit 72314c4388
2 changed files with 11 additions and 4 deletions

View File

@@ -10,6 +10,7 @@ function BookFileEditorRow(props) {
id,
path,
quality,
qualityCutoffNotMet,
isSelected,
onSelectedChange
} = props;
@@ -28,6 +29,7 @@ function BookFileEditorRow(props) {
<TableRowCell>
<BookQuality
quality={quality}
isCutoffNotMet={qualityCutoffNotMet}
/>
</TableRowCell>
</TableRow>
@@ -38,6 +40,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
};