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:
parent
cd713e7252
commit
101b046753
@ -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 New Issue
Block a user