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 @@ + + + {{ $t('dashboard.recently_added_books') }} + + + + + + {{ $t('dashboard.recently_added_series') }} @@ -104,21 +119,6 @@ /> - - - - {{ $t('dashboard.recently_added_books') }} - - - - - @@ -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)