summaryrefslogtreecommitdiffstats
path: root/webapp/src/components/GroupModuleGroupList.vue
diff options
context:
space:
mode:
authorUdo Walter2019-05-01 17:42:36 +0200
committerUdo Walter2019-05-01 17:42:36 +0200
commit302457e61b313fa301ede862402baa0fff10755f (patch)
treec7fe72e8effc54049cbf50e00f886ea01b7f62a7 /webapp/src/components/GroupModuleGroupList.vue
parent[webapp/groups] load into info if groups is opened via route (diff)
downloadbas-302457e61b313fa301ede862402baa0fff10755f.tar.gz
bas-302457e61b313fa301ede862402baa0fff10755f.tar.xz
bas-302457e61b313fa301ede862402baa0fff10755f.zip
[webapp/groups] fix tab switching when setting showall
Diffstat (limited to 'webapp/src/components/GroupModuleGroupList.vue')
-rw-r--r--webapp/src/components/GroupModuleGroupList.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/webapp/src/components/GroupModuleGroupList.vue b/webapp/src/components/GroupModuleGroupList.vue
index 2bec2b8..b556509 100644
--- a/webapp/src/components/GroupModuleGroupList.vue
+++ b/webapp/src/components/GroupModuleGroupList.vue
@@ -81,7 +81,7 @@ export default {
methods: {
...mapMutations('groups', ['setActiveTab', 'setTab', 'setDialog']),
loadGroup (item) {
- this.$store.dispatch('groups/loadGroup', { id: item.id, name: item.name, tabIndex: this.tabIndex + 1, switchTab: true })
+ this.$store.dispatch('groups/loadGroup', { id: item.id, name: item.name, tabIndex: this.tabIndex + 1, switchTab: true, autoGoto: true })
},
newGroup () {
this.setTab({ index: 1, item: { id: 'create', tabType: 'group' } })