Do not display "Is Single File Release" flag.

(cherry picked from commit 80100df54ebf09d4708f6a5f541f9f8da34ecf48)
pull/4200/head
zhangdoa 4 months ago
parent a581e64cd3
commit 6140d5a3f4

@ -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…
Cancel
Save