mirror of
https://github.com/NuSkooler/enigma-bbs.git
synced 2025-06-10 06:34:41 +02:00
Use natural sort for filters
This commit is contained in:
parent
9c61b2b945
commit
541489acb0
1 changed files with 1 additions and 1 deletions
|
@ -55,7 +55,7 @@ exports.getModule = class FileAreaFilterEdit extends MenuModule {
|
|||
}
|
||||
}
|
||||
|
||||
return filterA.name.localeCompare(filterB.name);
|
||||
return filterA.name.localeCompare(filterB.name, { sensitivity : false, numeric : true } );
|
||||
});
|
||||
|
||||
this.menuMethods = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue