mirror of
https://github.com/gotson/komga.git
synced 2025-12-20 15:34:17 +01:00
fix(webui): dashboard infinite scroll not working for on deck and new/updated series
This commit is contained in:
parent
f3925424cd
commit
4153603879
1 changed files with 3 additions and 3 deletions
|
|
@ -350,7 +350,7 @@ export default Vue.extend({
|
|||
)
|
||||
this.loaderOnDeckBooks = new PageLoader<BookDto>(
|
||||
{},
|
||||
() => this.$komgaBooks.getBooksOnDeck(this.getRequestLibraryId(libraryId)),
|
||||
(pageable: PageRequest) => this.$komgaBooks.getBooksOnDeck(this.getRequestLibraryId(libraryId), pageable),
|
||||
)
|
||||
this.loaderLatestBooks = new PageLoader<BookDto>(
|
||||
{sort: ['createdDate,desc']},
|
||||
|
|
@ -367,11 +367,11 @@ export default Vue.extend({
|
|||
|
||||
this.loaderNewSeries = new PageLoader<SeriesDto>(
|
||||
{},
|
||||
() => this.$komgaSeries.getNewSeries(this.getRequestLibraryId(libraryId)),
|
||||
(pageable: PageRequest) => this.$komgaSeries.getNewSeries(this.getRequestLibraryId(libraryId), pageable),
|
||||
)
|
||||
this.loaderUpdatedSeries = new PageLoader<SeriesDto>(
|
||||
{},
|
||||
() => this.$komgaSeries.getUpdatedSeries(this.getRequestLibraryId(libraryId)),
|
||||
(pageable: PageRequest) => this.$komgaSeries.getUpdatedSeries(this.getRequestLibraryId(libraryId), pageable),
|
||||
)
|
||||
|
||||
Promise.all([
|
||||
|
|
|
|||
Loading…
Reference in a new issue