1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-20 21:55:03 -04:00

New: Natural Sorting Manual Import Relative Paths

(cherry picked from commit bdd5865876796bc203c8117418a5389afc8b5f11)
This commit is contained in:
Mark McDowall
2022-04-09 21:19:12 -07:00
committed by Qstick
parent 8fe81b428a
commit 5316382113
3 changed files with 16 additions and 2 deletions
@@ -4,6 +4,7 @@ import { batchActions } from 'redux-batched-actions';
import { sortDirections } from 'Helpers/Props';
import { createThunk, handleThunks } from 'Store/thunks';
import createAjaxRequest from 'Utilities/createAjaxRequest';
import naturalExpansion from 'Utilities/String/naturalExpansion';
import { set, update, updateItem } from './baseActions';
import createHandleActions from './Creators/createHandleActions';
import createSetClientSideCollectionSortReducer from './Creators/Reducers/createSetClientSideCollectionSortReducer';
@@ -35,7 +36,7 @@ export const defaultState = {
relativePath: function(item, direction) {
const relativePath = item.relativePath;
return relativePath.toLowerCase();
return naturalExpansion(relativePath.toLowerCase());
},
movie: function(item, direction) {