mirror of
https://github.com/lidarr/Lidarr
synced 2025-01-03 05:25:10 +00: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'),
|
||||
isVisible: true
|
||||
},
|
||||
{
|
||||
name: 'isSingleFileRelease',
|
||||
label: () => 'Is Single File Release',
|
||||
isVisible: true
|
||||
},
|
||||
{
|
||||
name: 'cueSheetPath',
|
||||
label: () => 'Cue Sheet Path',
|
||||
|
|
|
@ -64,7 +64,6 @@ class InteractiveImportRow extends Component {
|
|||
artist,
|
||||
album,
|
||||
tracks,
|
||||
isSingleFileRelease,
|
||||
quality,
|
||||
isSelected,
|
||||
onValidRowChange
|
||||
|
@ -83,7 +82,7 @@ class InteractiveImportRow extends Component {
|
|||
const isValid = !!(
|
||||
artist &&
|
||||
album &&
|
||||
(isSingleFileRelease || tracks.length) &&
|
||||
tracks.length &&
|
||||
quality
|
||||
);
|
||||
|
||||
|
@ -168,7 +167,6 @@ class InteractiveImportRow extends Component {
|
|||
album,
|
||||
albumReleaseId,
|
||||
tracks,
|
||||
isSingleFileRelease,
|
||||
cueSheetPath,
|
||||
quality,
|
||||
releaseGroup,
|
||||
|
@ -273,15 +271,6 @@ class InteractiveImportRow extends Component {
|
|||
|
||||
</TableRowCellButton>
|
||||
|
||||
<TableRowCell
|
||||
id={id}
|
||||
title={'Is Single File Release'}
|
||||
>
|
||||
{
|
||||
isSingleFileRelease ? 'Yes' : 'No'
|
||||
}
|
||||
</TableRowCell>
|
||||
|
||||
<TableRowCell
|
||||
id={id}
|
||||
title={'Cue Sheet Path'}
|
||||
|
|
Loading…
Reference in a new issue