diff --git a/front/src/components/library/Albums.vue b/front/src/components/library/Albums.vue index 9216b8960..4865bf74c 100644 --- a/front/src/components/library/Albums.vue +++ b/front/src/components/library/Albums.vue @@ -94,7 +94,7 @@ const fetchData = async () => { const store = useStore() watch(() => store.state.moderation.lastUpdate, fetchData) -watch(page, fetchData) +watch([page, tags], fetchData) fetchData() const search = () => { diff --git a/front/src/components/library/Artists.vue b/front/src/components/library/Artists.vue index f782ece58..19891ab20 100644 --- a/front/src/components/library/Artists.vue +++ b/front/src/components/library/Artists.vue @@ -95,7 +95,7 @@ const fetchData = async () => { const store = useStore() watch([() => store.state.moderation.lastUpdate, excludeCompilation], fetchData) -watch(page, fetchData) +watch([page, tags], fetchData) fetchData() const search = () => { diff --git a/front/src/components/library/Podcasts.vue b/front/src/components/library/Podcasts.vue index 02f0bdf60..07fa7f375 100644 --- a/front/src/components/library/Podcasts.vue +++ b/front/src/components/library/Podcasts.vue @@ -96,7 +96,7 @@ const fetchData = async () => { const store = useStore() watch(() => store.state.moderation.lastUpdate, fetchData) -watch(page, fetchData) +watch([page, tags], fetchData) fetchData() const search = () => {