mirror of
https://github.com/lidarr/Lidarr
synced 2025-03-04 10:28:08 +00:00
New: Remember sorting for manual import
This commit is contained in:
parent
51085482bc
commit
761e34fb5d
1 changed files with 4 additions and 0 deletions
|
@ -35,6 +35,8 @@ export const defaultState = {
|
|||
pendingChanges: {},
|
||||
sortKey: 'path',
|
||||
sortDirection: sortDirections.ASCENDING,
|
||||
secondarySortKey: 'path',
|
||||
secondarySortDirection: sortDirections.ASCENDING,
|
||||
recentFolders: [],
|
||||
importMode: 'chooseImportMode',
|
||||
sortPredicates: {
|
||||
|
@ -75,6 +77,8 @@ export const defaultState = {
|
|||
};
|
||||
|
||||
export const persistState = [
|
||||
'interactiveImport.sortKey',
|
||||
'interactiveImport.sortDirection',
|
||||
'interactiveImport.recentFolders',
|
||||
'interactiveImport.importMode'
|
||||
];
|
||||
|
|
Loading…
Add table
Reference in a new issue