diff --git a/komga-webui/src/views/BrowseLibraries.vue b/komga-webui/src/views/BrowseLibraries.vue index ea9efc836a3..d1c4b2eae74 100644 --- a/komga-webui/src/views/BrowseLibraries.vue +++ b/komga-webui/src/views/BrowseLibraries.vue @@ -153,6 +153,8 @@ export default mixins(VisibleElements).extend({ // restore filter status from query params this.filterStatus = this.parseQueryFilterStatus(this.$route.query.status) + this.reloadData(Number(this.$route.params.libraryId), this.series.length) + this.setWatches() }, beforeRouteUpdate (to, from, next) { diff --git a/komga-webui/src/views/BrowseSeries.vue b/komga-webui/src/views/BrowseSeries.vue index e0d6cc1799f..aeef419da4e 100644 --- a/komga-webui/src/views/BrowseSeries.vue +++ b/komga-webui/src/views/BrowseSeries.vue @@ -180,6 +180,8 @@ export default mixins(VisibleElements).extend({ // restore sort from query param this.sortActive = this.parseQuerySortOrDefault(this.$route.query.sort) + this.reloadData(Number(this.$route.params.seriesId), this.books.length) + this.setWatches() }, async beforeRouteUpdate (to, from, next) {