Make changing tags reactive

This commit is contained in:
wvffle 2022-09-05 15:05:16 +00:00 committed by Georg Krause
parent 711aa783b3
commit 1837107ae8
3 changed files with 3 additions and 3 deletions

View File

@ -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 = () => {

View File

@ -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 = () => {

View File

@ -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 = () => {