mirror of
https://github.com/Sonarr/Sonarr
synced 2025-01-03 05:35:29 +00:00
Fixed: Editing Quality Profiles
This commit is contained in:
parent
f59c0b16ca
commit
80ca1a6ac2
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…
Reference in a new issue