summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2021-10-29 08:20:40 +0200
committerChristoph Wurst <christoph@winzerhof-wurst.at>2021-10-29 08:20:40 +0200
commit4258b0c244bf05235df9b747a351900fc4fb4287 (patch)
tree6d285e17195b8bf46b0f09c8316d88fdc2e96188 /src
parent8fb8020039b3a01177b655fcec3bf751cbd9fb2f (diff)
Fix contacts group download due to missing store variable
`downloadGroup` accesses the `contacts` computed store property that was accidentally dropped in 6030761c32d047b2208376a99d75b72c7c57987 Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'src')
-rw-r--r--src/components/AppNavigation/GroupNavigationItem.vue3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/components/AppNavigation/GroupNavigationItem.vue b/src/components/AppNavigation/GroupNavigationItem.vue
index 389c7807..2185304b 100644
--- a/src/components/AppNavigation/GroupNavigationItem.vue
+++ b/src/components/AppNavigation/GroupNavigationItem.vue
@@ -72,6 +72,9 @@ export default {
},
computed: {
+ contacts() {
+ return this.$store.getters.getContacts
+ },
},
methods: {