mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-11 15:56:17 -07:00
Use natural sorting in WebUI
Also change case sensitivity to the default of 'sort' mode. PR #20264.
This commit is contained in:
parent
6918316a3d
commit
00372dd559
4 changed files with 9 additions and 12 deletions
|
@ -575,7 +575,7 @@ window.addEvent('load', function() {
|
|||
const sortedTags = [];
|
||||
for (const key in tagList)
|
||||
sortedTags.push(tagList[key].name);
|
||||
sortedTags.sort();
|
||||
sortedTags.sort(window.qBittorrent.Misc.naturalSortCollator.compare);
|
||||
|
||||
for (let i = 0; i < sortedTags.length; ++i) {
|
||||
const tagName = sortedTags[i];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue