mirror of
https://github.com/vkaelin/LeagueStats.git
synced 2026-03-25 21:07:27 +00:00
fix: more matches button works again
This commit is contained in:
parent
0a8b1fa622
commit
abfd9990bd
1 changed files with 1 additions and 1 deletions
|
|
@ -39,7 +39,7 @@ export const mutations = {
|
|||
},
|
||||
MATCHES_FOUND(state, { newMatches, stats }) {
|
||||
state.overview.matchesLoading = false
|
||||
state.overview.matches = [...state.infos.matches, ...newMatches]
|
||||
state.overview.matches = [...state.overview.matches, ...newMatches]
|
||||
state.overview.matchIndex += newMatches.length
|
||||
state.overview.stats = stats
|
||||
state.champions.championsLoaded = false
|
||||
|
|
|
|||
Loading…
Reference in a new issue