fixed title showing internal bsp name instead of actual map name + added reset-mutations to store

This commit is contained in:
cnachtigall1991
2021-10-19 07:56:37 +02:00
parent 2c25138516
commit bb3da7d3c4
4 changed files with 35 additions and 8 deletions

View File

@@ -20,6 +20,18 @@ export default createStore({
changePlayerDetails(state, payload) {
state.playerDetails = payload.data
},
resetId64(state) {
state.id64 = ''
},
resetVanityUrl(state) {
state.vanityUrl = ''
},
resetMatchDetails(state) {
state.matchDetails = ''
},
resetPlayerDetails(state) {
state.playerDetails = ''
},
},
actions: {
},