Make changing tags reactive

environments/review-front-deve-otr6gc/deployments/13401
wvffle 2022-09-05 15:05:16 +00:00 zatwierdzone przez Georg Krause
rodzic 711aa783b3
commit 1837107ae8
3 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

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

Wyświetl plik

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

Wyświetl plik

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