mirror of
https://github.com/Readarr/Readarr
synced 2026-01-08 08:33:30 +01:00
New: Remember sorting for manual import
This commit is contained in:
parent
61004ea33f
commit
2121204064
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…
Reference in a new issue