From 7f49bfa05e20ae4adb5ab40244ae9b770c1c2348 Mon Sep 17 00:00:00 2001 From: Gauthier Roebroeck Date: Thu, 27 May 2021 09:52:14 +0800 Subject: [PATCH] fix(webui): show recent books before series --- komga-webui/src/views/Dashboard.vue | 36 ++++++++++++++--------------- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/komga-webui/src/views/Dashboard.vue b/komga-webui/src/views/Dashboard.vue index 66fbb48fd..50123d2ae 100644 --- a/komga-webui/src/views/Dashboard.vue +++ b/komga-webui/src/views/Dashboard.vue @@ -75,6 +75,21 @@ + + + + + - - - - - @@ -227,11 +227,11 @@ export default Vue.extend({ this.library = this.getLibraryLazy(libraryId) this.selectedSeries = [] this.selectedBooks = [] - this.loadNewSeries(libraryId) - this.loadUpdatedSeries(libraryId) - this.loadLatestBooks(libraryId) this.loadInProgressBooks(libraryId) this.loadOnDeckBooks(libraryId) + this.loadLatestBooks(libraryId) + this.loadNewSeries(libraryId) + this.loadUpdatedSeries(libraryId) }, replaceSeries(series: SeriesDto) { let index = this.newSeries.findIndex(x => x.id === series.id)