1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-19 17:32:38 +01:00

Fix custom formats sorting for quality profiles

This commit is contained in:
Bogdan 2024-07-17 20:31:56 +03:00
parent cd713e7252
commit 101b046753

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