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