mirror of
https://github.com/fergalmoran/Readarr.git
synced 2025-12-22 09:29:59 +00:00
Fixed: Manual import quality selection
This commit is contained in:
@@ -14,5 +14,5 @@
|
|||||||
.label {
|
.label {
|
||||||
composes: label from 'Components/Label.css';
|
composes: label from 'Components/Label.css';
|
||||||
|
|
||||||
pointer-events: none;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -50,7 +50,7 @@ class SelectQualityModalContentConnector extends Component {
|
|||||||
|
|
||||||
onQualitySelect = ({ qualityId, proper, real }) => {
|
onQualitySelect = ({ qualityId, proper, real }) => {
|
||||||
const quality = _.find(this.props.items,
|
const quality = _.find(this.props.items,
|
||||||
(item) => item.quality.id === qualityId).quality;
|
(item) => item.id === qualityId);
|
||||||
|
|
||||||
const revision = {
|
const revision = {
|
||||||
version: proper ? 2 : 1,
|
version: proper ? 2 : 1,
|
||||||
|
|||||||
Reference in New Issue
Block a user