1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-17 21:26:13 -04:00

Compare commits

...

1 Commits

Author SHA1 Message Date
Bogdan
80ca1a6ac2 Fixed: Editing Quality Profiles 2024-07-18 08:10:43 -07:00

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