New: Natural Sorting Manual Import Paths

(cherry picked from commit bdd5865876796bc203c8117418a5389afc8b5f11)

Closes #1641
This commit is contained in:
Mark McDowall
2022-04-09 21:19:12 -07:00
committed by Bogdan
parent 54c1c7862e
commit 61004ea33f
3 changed files with 16 additions and 2 deletions
@@ -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());
},
author: function(item, direction) {