summaryrefslogtreecommitdiffstats
path: root/webapp/src/components/GroupModule.vue
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/src/components/GroupModule.vue')
-rw-r--r--webapp/src/components/GroupModule.vue6
1 files changed, 6 insertions, 0 deletions
diff --git a/webapp/src/components/GroupModule.vue b/webapp/src/components/GroupModule.vue
index a030d8a..2c7a399 100644
--- a/webapp/src/components/GroupModule.vue
+++ b/webapp/src/components/GroupModule.vue
@@ -64,9 +64,15 @@ export default {
...mapState('groups', ['tabChain', 'activeTab', 'groupList', 'clientList']),
reloading () {
return this.tabChain.some(tab => tab.loading)
+ },
+ activeTabName () {
+ return this.tabChain[this.activeTab].name
}
},
watch: {
+ activeTabName () {
+ window.dispatchEvent(new Event('resize'))
+ },
activeTab (index) {
this.updateUrl()
},