mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-22 07:42:28 +00:00
Fixed: Manual import quality selection
This commit is contained in:
parent
ec12bede9d
commit
422b82da3c
2 changed files with 2 additions and 2 deletions
|
@ -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,
|
||||||
|
|
Loading…
Reference in a new issue