mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Merge pull request #2265 from MrTimscampi/sort-by-premiere-date
Sort items by premiere date on the details page
This commit is contained in:
commit
58aa865af0
2 changed files with 3 additions and 3 deletions
|
@ -1209,7 +1209,7 @@ function renderMoreFromArtist(view, item, apiClient) {
|
||||||
IncludeItemTypes: 'MusicAlbum',
|
IncludeItemTypes: 'MusicAlbum',
|
||||||
Recursive: true,
|
Recursive: true,
|
||||||
ExcludeItemIds: item.Id,
|
ExcludeItemIds: item.Id,
|
||||||
SortBy: 'ProductionYear,SortName',
|
SortBy: 'PremiereDate,ProductionYear,SortName',
|
||||||
SortOrder: 'Descending'
|
SortOrder: 'Descending'
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -1391,7 +1391,7 @@ function renderChildren(page, item) {
|
||||||
Fields: fields
|
Fields: fields
|
||||||
});
|
});
|
||||||
} else if (item.Type == 'MusicArtist') {
|
} else if (item.Type == 'MusicArtist') {
|
||||||
query.SortBy = 'ProductionYear,SortName';
|
query.SortBy = 'PremiereDate,ProductionYear,SortName';
|
||||||
}
|
}
|
||||||
|
|
||||||
promise = promise || apiClient.getItems(apiClient.getCurrentUserId(), query);
|
promise = promise || apiClient.getItems(apiClient.getCurrentUserId(), query);
|
||||||
|
|
|
@ -195,7 +195,7 @@ function renderSection(page, item, element, type) {
|
||||||
ArtistIds: '',
|
ArtistIds: '',
|
||||||
AlbumArtistIds: '',
|
AlbumArtistIds: '',
|
||||||
SortOrder: 'Descending',
|
SortOrder: 'Descending',
|
||||||
SortBy: 'ProductionYear,Sortname'
|
SortBy: 'PremiereDate,ProductionYear,Sortname'
|
||||||
}, {
|
}, {
|
||||||
shape: 'overflowSquare',
|
shape: 'overflowSquare',
|
||||||
playFromHere: true,
|
playFromHere: true,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue