mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 05:53:33 -07:00
Do not display "Is Single File Release" flag.
(cherry picked from commit 80100df54ebf09d4708f6a5f541f9f8da34ecf48)
This commit is contained in:
parent
a581e64cd3
commit
6140d5a3f4
2 changed files with 1 additions and 17 deletions
|
@ -53,11 +53,6 @@ const columns = [
|
||||||
label: () => translate('Tracks'),
|
label: () => translate('Tracks'),
|
||||||
isVisible: true
|
isVisible: true
|
||||||
},
|
},
|
||||||
{
|
|
||||||
name: 'isSingleFileRelease',
|
|
||||||
label: () => 'Is Single File Release',
|
|
||||||
isVisible: true
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: 'cueSheetPath',
|
name: 'cueSheetPath',
|
||||||
label: () => 'Cue Sheet Path',
|
label: () => 'Cue Sheet Path',
|
||||||
|
|
|
@ -64,7 +64,6 @@ class InteractiveImportRow extends Component {
|
||||||
artist,
|
artist,
|
||||||
album,
|
album,
|
||||||
tracks,
|
tracks,
|
||||||
isSingleFileRelease,
|
|
||||||
quality,
|
quality,
|
||||||
isSelected,
|
isSelected,
|
||||||
onValidRowChange
|
onValidRowChange
|
||||||
|
@ -83,7 +82,7 @@ class InteractiveImportRow extends Component {
|
||||||
const isValid = !!(
|
const isValid = !!(
|
||||||
artist &&
|
artist &&
|
||||||
album &&
|
album &&
|
||||||
(isSingleFileRelease || tracks.length) &&
|
tracks.length &&
|
||||||
quality
|
quality
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -168,7 +167,6 @@ class InteractiveImportRow extends Component {
|
||||||
album,
|
album,
|
||||||
albumReleaseId,
|
albumReleaseId,
|
||||||
tracks,
|
tracks,
|
||||||
isSingleFileRelease,
|
|
||||||
cueSheetPath,
|
cueSheetPath,
|
||||||
quality,
|
quality,
|
||||||
releaseGroup,
|
releaseGroup,
|
||||||
|
@ -273,15 +271,6 @@ class InteractiveImportRow extends Component {
|
||||||
|
|
||||||
</TableRowCellButton>
|
</TableRowCellButton>
|
||||||
|
|
||||||
<TableRowCell
|
|
||||||
id={id}
|
|
||||||
title={'Is Single File Release'}
|
|
||||||
>
|
|
||||||
{
|
|
||||||
isSingleFileRelease ? 'Yes' : 'No'
|
|
||||||
}
|
|
||||||
</TableRowCell>
|
|
||||||
|
|
||||||
<TableRowCell
|
<TableRowCell
|
||||||
id={id}
|
id={id}
|
||||||
title={'Cue Sheet Path'}
|
title={'Cue Sheet Path'}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue