mirror of
https://github.com/Radarr/Radarr.git
synced 2025-04-23 14:07:20 -04:00
Fix custom formats sorting for quality profiles
This commit is contained in:
parent
cd713e7252
commit
101b046753
1 changed files with 1 additions and 1 deletions
|
@ -21,7 +21,7 @@ function calcOrder(profileFormatItems) {
|
|||
return b.score - a.score;
|
||||
}
|
||||
|
||||
return a.localeCompare(b.name, undefined, { numeric: true });
|
||||
return a.name.localeCompare(b.name, undefined, { numeric: true });
|
||||
}).map((x) => items[x.format]);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue