1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

fix: use SeriesSortName in SortBy

`SeriesName` is not a valid value for `SortBy`.
This commit is contained in:
Dmitry Lyzo 2024-03-29 00:43:44 +03:00
parent d88dee9e05
commit 2e4eb68d59
2 changed files with 2 additions and 2 deletions

View file

@ -1058,7 +1058,7 @@ class ItemsView {
if (params.type === 'Episode') {
return {
name: globalize.translate('Name'),
value: 'SeriesName,SortName'
value: 'SeriesSortName,SortName'
};
}