Use natural sorting in WebUI

Also change case sensitivity to the default of 'sort' mode.

PR #20264.
This commit is contained in:
Chocobo1
2024-01-15 13:12:36 +08:00
committed by GitHub
parent 6918316a3d
commit 00372dd559
4 changed files with 9 additions and 12 deletions

View File

@@ -179,7 +179,8 @@ window.qBittorrent.Misc = (function() {
return escapedString;
};
const naturalSortCollator = new Intl.Collator(undefined, { numeric: true, sensitivity: 'base' });
// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Collator/Collator#parameters
const naturalSortCollator = new Intl.Collator(undefined, { numeric: true, usage: 'sort' });
const safeTrim = function(value) {
try {