Fix whitespace issues

This commit is contained in:
Nick Thomson 2022-09-23 19:37:30 +01:00
parent c3f2e606dd
commit 731cf8e4ed
5 changed files with 47 additions and 50 deletions

View File

@ -69,11 +69,9 @@ export default {
computed: { computed: {
show: { show: {
get() { get() {
console.log("Getter")
return this.$store.state.globals.showBatchQuickMatchModal return this.$store.state.globals.showBatchQuickMatchModal
}, },
set(val) { set(val) {
console.log("Setter")
this.$store.commit('globals/setShowBatchQuickMatchModal', val) this.$store.commit('globals/setShowBatchQuickMatchModal', val)
} }
}, },

View File

@ -111,7 +111,6 @@ export const mutations = {
state.isCasting = val state.isCasting = val
}, },
setShowBatchQuickMatchModal(state, val) { setShowBatchQuickMatchModal(state, val) {
console.log("setShowBatchQuickMatchModal: " + val)
state.showBatchQuickMatchModal = val state.showBatchQuickMatchModal = val
} }
} }