1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-18 21:35:27 -04:00

Actually fixed error rending queue row when quality is missing

This commit is contained in:
Mark McDowall
2020-03-19 10:10:36 -07:00
parent 00c922875f
commit bc01384cc7
+7 -5
View File
@@ -222,11 +222,13 @@ class QueueRow extends Component {
if (name === 'quality') {
return (
<TableRowCell key={name}>
quality ?
<EpisodeQuality
quality={quality}
/> :
null
{
quality ?
<EpisodeQuality
quality={quality}
/> :
null
}
</TableRowCell>
);
}