mirror of
https://github.com/gotson/komga.git
synced 2025-12-20 15:34:17 +01:00
fix(webui): latest books on dashboard not sorted properly
This commit is contained in:
parent
2f8b62c7ed
commit
b691f3098b
1 changed files with 1 additions and 1 deletions
|
|
@ -353,7 +353,7 @@ export default Vue.extend({
|
|||
() => this.$komgaBooks.getBooksOnDeck(this.getRequestLibraryId(libraryId)),
|
||||
)
|
||||
this.loaderLatestBooks = new PageLoader<BookDto>(
|
||||
{sort: ['metadata.title,desc']},
|
||||
{sort: ['createdDate,desc']},
|
||||
(pageable: PageRequest) => this.$komgaBooks.getBooks(this.getRequestLibraryId(libraryId), pageable),
|
||||
)
|
||||
this.loaderRecentlyReleasedBooks = new PageLoader<BookDto>(
|
||||
|
|
|
|||
Loading…
Reference in a new issue