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:
commit
ae0622d092
2 changed files with 2 additions and 2 deletions
|
@ -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,
|
||||||
|
|
|
@ -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,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue