mirror of
https://github.com/Radarr/Radarr
synced 2025-02-24 15:21:28 +00:00
Fixed: Error Rendering Queue Row on Null Quality
Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com>
This commit is contained in:
parent
d99519cb23
commit
086640519a
2 changed files with 12 additions and 9 deletions
|
@ -163,9 +163,13 @@ class QueueRow extends Component {
|
||||||
if (name === 'quality') {
|
if (name === 'quality') {
|
||||||
return (
|
return (
|
||||||
<TableRowCell key={name}>
|
<TableRowCell key={name}>
|
||||||
<MovieQuality
|
{
|
||||||
quality={quality}
|
quality ?
|
||||||
/>
|
<MovieQuality
|
||||||
|
quality={quality}
|
||||||
|
/> :
|
||||||
|
null
|
||||||
|
}
|
||||||
</TableRowCell>
|
</TableRowCell>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
import _ from 'lodash';
|
|
||||||
import PropTypes from 'prop-types';
|
import PropTypes from 'prop-types';
|
||||||
import React, { Component } from 'react';
|
import React, { Component } from 'react';
|
||||||
import { connect } from 'react-redux';
|
import { connect } from 'react-redux';
|
||||||
|
@ -13,11 +12,11 @@ function createMapStateToProps() {
|
||||||
createMovieSelector(),
|
createMovieSelector(),
|
||||||
createUISettingsSelector(),
|
createUISettingsSelector(),
|
||||||
(movie, uiSettings) => {
|
(movie, uiSettings) => {
|
||||||
const result = _.pick(uiSettings, [
|
const result = {
|
||||||
'showRelativeDates',
|
showRelativeDates: uiSettings.showRelativeDates,
|
||||||
'shortDateFormat',
|
shortDateFormat: uiSettings.shortDateFormat,
|
||||||
'timeFormat'
|
timeFormat: uiSettings.timeFormat
|
||||||
]);
|
};
|
||||||
|
|
||||||
result.movie = movie;
|
result.movie = movie;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue