add sorting to author page

This commit is contained in:
KeyboardHammer 2024-02-03 21:48:35 -06:00
parent 432e25565e
commit e2bb0cfb7c
4 changed files with 56 additions and 2 deletions

View file

@ -11,7 +11,9 @@ export const state = () => ({
useChapterTrack: false,
seriesSortBy: 'name',
seriesSortDesc: false,
seriesFilterBy: 'all'
seriesFilterBy: 'all',
authorSortBy: 'name',
authorSortDesc: false,
}
})