New: Natural Sorting Manual Import Paths

(cherry picked from commit bdd5865876796bc203c8117418a5389afc8b5f11)

Closes  #2751
This commit is contained in:
Mark McDowall 2022-04-09 21:19:12 -07:00 committed by Bogdan
commit e3bc824dc1
3 changed files with 16 additions and 2 deletions

View file

@ -5,6 +5,7 @@ import { sortDirections } from 'Helpers/Props';
import { createThunk, handleThunks } from 'Store/thunks';
import createAjaxRequest from 'Utilities/createAjaxRequest';
import updateSectionState from 'Utilities/State/updateSectionState';
import naturalExpansion from 'Utilities/String/naturalExpansion';
import { set, update, updateItem } from './baseActions';
import createFetchHandler from './Creators/createFetchHandler';
import createHandleActions from './Creators/createHandleActions';
@ -40,7 +41,7 @@ export const defaultState = {
path: function(item, direction) {
const path = item.path;
return path.toLowerCase();
return naturalExpansion(path.toLowerCase());
},
artist: function(item, direction) {