1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-08-18 08:19:38 +02:00

Fixed: Error Rendering Queue Row on Null Quality

Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com>
This commit is contained in:
Qstick 2020-03-20 22:43:51 -04:00
parent d99519cb23
commit 086640519a
2 changed files with 12 additions and 9 deletions

View File

@ -163,9 +163,13 @@ class QueueRow extends Component {
if (name === 'quality') {
return (
<TableRowCell key={name}>
<MovieQuality
quality={quality}
/>
{
quality ?
<MovieQuality
quality={quality}
/> :
null
}
</TableRowCell>
);
}

View File

@ -1,4 +1,3 @@
import _ from 'lodash';
import PropTypes from 'prop-types';
import React, { Component } from 'react';
import { connect } from 'react-redux';
@ -13,11 +12,11 @@ function createMapStateToProps() {
createMovieSelector(),
createUISettingsSelector(),
(movie, uiSettings) => {
const result = _.pick(uiSettings, [
'showRelativeDates',
'shortDateFormat',
'timeFormat'
]);
const result = {
showRelativeDates: uiSettings.showRelativeDates,
shortDateFormat: uiSettings.shortDateFormat,
timeFormat: uiSettings.timeFormat
};
result.movie = movie;