Skip to content

Commit 1a2c0db

Browse files
committed
refactor(store): change commitsLastMonth to contributionsLastMonth
1 parent 6fe12a9 commit 1a2c0db

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

store/index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
export const state = () => ({
22
orgsCount: 0,
33
usersCount: 0,
4-
commitsLastMonth: 0,
4+
contributionsLastMonth: 0,
55
users: [],
66
orgs: [],
77
pageCount: 0,
@@ -42,8 +42,8 @@ export const mutations = {
4242
setUsersCount(state, usersCount) {
4343
state.usersCount = usersCount
4444
},
45-
setCommitsLastMonth(state, commitsLastMonth) {
46-
state.commitsLastMonth = commitsLastMonth
45+
setContributionsLastMonth(state, contributionsLastMonth) {
46+
state.contributionsLastMonth = contributionsLastMonth
4747
},
4848
setPageCount(state, pageCount) {
4949
state.pageCount = pageCount

0 commit comments

Comments
 (0)