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

Sort genres by SortName instead of Random

This commit is contained in:
ianjazz246 2021-11-24 09:52:16 -08:00
parent eab13112d6
commit 538cee3cf1
2 changed files with 2 additions and 2 deletions

View file

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

View file

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