We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11713c5 commit c9cb98fCopy full SHA for c9cb98f
packages/app-frontend/src/views/vuex/VuexStateInspector.vue
@@ -106,7 +106,7 @@
106
data-id="load-vuex-state"
107
icon-left="arrow_forward"
108
class="accent flat"
109
- @click="loadState()"
+ @click="loadStateNow()"
110
>
111
Load state
112
</VueButton>
@@ -313,9 +313,13 @@ export default {
313
}, 250),
314
315
loadState: debounce(function () {
316
+ this.loadStateNow()
317
+ }, 300),
318
+
319
+ loadStateNow () {
320
const history = this.filteredHistory
321
this.inspect(history[history.length - 1])
- }, 300),
322
+ },
323
324
onMutation () {
325
if (this.$shared.vuexAutoload) {
0 commit comments