summaryrefslogtreecommitdiffstats
path: root/src/store/groups.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/store/groups.js')
-rw-r--r--src/store/groups.js5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/store/groups.js b/src/store/groups.js
index a273f616..f00cb828 100644
--- a/src/store/groups.js
+++ b/src/store/groups.js
@@ -23,6 +23,7 @@
const state = {
groups: []
}
+
const mutations = {
/**
* Extract all the groups from the provided contacts
@@ -56,9 +57,7 @@ const mutations = {
}
const getters = {
- getGroups(state) {
- return state.groups
- }
+ getGroups: state => state.groups
}
const actions = {}