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:
parent
d88dee9e05
commit
2e4eb68d59
2 changed files with 2 additions and 2 deletions
|
@ -133,7 +133,7 @@ function getFetchDataFn(section) {
|
||||||
return function () {
|
return function () {
|
||||||
const apiClient = this.apiClient;
|
const apiClient = this.apiClient;
|
||||||
const options = {
|
const options = {
|
||||||
SortBy: 'SeriesName,SortName',
|
SortBy: 'SeriesSortName,SortName',
|
||||||
SortOrder: 'Ascending',
|
SortOrder: 'Ascending',
|
||||||
Filters: 'IsFavorite',
|
Filters: 'IsFavorite',
|
||||||
Recursive: true,
|
Recursive: true,
|
||||||
|
|
|
@ -1058,7 +1058,7 @@ class ItemsView {
|
||||||
if (params.type === 'Episode') {
|
if (params.type === 'Episode') {
|
||||||
return {
|
return {
|
||||||
name: globalize.translate('Name'),
|
name: globalize.translate('Name'),
|
||||||
value: 'SeriesName,SortName'
|
value: 'SeriesSortName,SortName'
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue