1
0
Fork 0
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:
Bogdan 2024-07-18 18:10:43 +03:00 committed by GitHub
parent f59c0b16ca
commit 80ca1a6ac2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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]);
}