Fix custom formats sorting for quality profiles

This commit is contained in:
Bogdan 2024-07-17 20:29:41 +03:00
parent f59c0b16ca
commit ebc280ebe9
1 changed files with 1 additions and 1 deletions

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