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

Merge pull request #3197 from ianjazz246/no-random-genre-sort

Sort genres by SortName instead of Random
This commit is contained in:
Bill Thornton 2021-12-30 11:47:20 -05:00 committed by GitHub
commit ae0622d092
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -17,7 +17,7 @@ import '../../elements/emby-button/emby-button';
if (!pageData) {
pageData = data[key] = {
query: {
SortBy: 'Random',
SortBy: 'SortName',
SortOrder: 'Ascending',
IncludeItemTypes: 'Movie',
Recursive: true,

View file

@ -17,7 +17,7 @@ import '../../elements/emby-button/emby-button';
if (!pageData) {
pageData = data[key] = {
query: {
SortBy: 'Random',
SortBy: 'SortName',
SortOrder: 'Ascending',
IncludeItemTypes: 'Series',
Recursive: true,