New: Sort interactive import by path by default

This commit is contained in:
ta264 2021-01-06 21:03:45 +00:00
parent 2499bb593a
commit 4e41c3b237
1 changed files with 3 additions and 3 deletions

View File

@ -31,8 +31,8 @@ export const defaultState = {
error: null,
items: [],
pendingChanges: {},
sortKey: 'quality',
sortDirection: sortDirections.DESCENDING,
sortKey: 'path',
sortDirection: sortDirections.ASCENDING,
recentFolders: [],
importMode: 'move',
sortPredicates: {
@ -66,7 +66,7 @@ export const defaultState = {
isFetching: false,
isPopulated: false,
error: null,
sortKey: 'relataivePath',
sortKey: 'relativePath',
sortDirection: sortDirections.ASCENDING,
items: []
}