1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2025-02-24 23:02:44 +00:00

Fixed: Remove AlbumFolder column in Mass Editor

This commit is contained in:
Qstick 2021-01-24 20:27:43 -05:00
parent 99924e969f
commit 77b565c882
3 changed files with 0 additions and 8 deletions

View file

@ -57,12 +57,6 @@ export const defaultState = {
isSortable: true,
isVisible: false
},
{
name: 'albumFolder',
label: 'Album Folder',
isSortable: true,
isVisible: true
},
{
name: 'path',
label: 'Path',

View file

@ -8,7 +8,6 @@ public class ArtistEditorResource
public bool? Monitored { get; set; }
public int? QualityProfileId { get; set; }
public int? MetadataProfileId { get; set; }
public bool? AlbumFolder { get; set; }
public string RootFolderPath { get; set; }
public List<int> Tags { get; set; }
public ApplyTags ApplyTags { get; set; }

View file

@ -8,7 +8,6 @@ public class ImportArtistDefaults
public int MetadataProfileId { get; set; }
public int LanguageProfileId { get; set; }
public int QualityProfileId { get; set; }
public bool AlbumFolder { get; set; }
public MonitorTypes Monitored { get; set; }
public HashSet<int> Tags { get; set; }
}