mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-06 04:52:21 -07:00
Fixed: Error rending queue row when quality is missing
This commit is contained in:
parent
0472b43a9c
commit
a773f9e135
2 changed files with 12 additions and 9 deletions
|
@ -188,9 +188,13 @@ class QueueRow extends Component {
|
|||
if (name === 'quality') {
|
||||
return (
|
||||
<TableRowCell key={name}>
|
||||
<TrackQuality
|
||||
quality={quality}
|
||||
/>
|
||||
{
|
||||
quality ?
|
||||
<TrackQuality
|
||||
quality={quality}
|
||||
/> :
|
||||
null
|
||||
}
|
||||
</TableRowCell>
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue