Fix dashboard user search loop

This commit is contained in:
sas.fajri
2026-05-08 09:39:15 +07:00
parent 5207eec99a
commit ef28d9b17a
2 changed files with 4 additions and 2 deletions

View File

@@ -92,7 +92,10 @@ module.exports = {
},
pageSync: {
get() { return this.$store.state.dashboard_user.page },
set(val) { this.doSearch(val) }
set(val) {
this.$store.commit('dashboard_user/update_page', val)
this.doSearch(val)
}
}
},
methods: {