summaryrefslogtreecommitdiffstats
path: root/webapp/src/components/GroupModule.vue
diff options
context:
space:
mode:
authorUdo Walter2019-03-29 02:20:38 +0100
committerUdo Walter2019-03-29 02:20:38 +0100
commit38461043e01df6990495b9ecbb63b68af0553268 (patch)
tree96f78ce3d63da6043bce7d4eba9a1b12599434e6 /webapp/src/components/GroupModule.vue
parent[webapp] fix disabled animation causing bug (diff)
downloadbas-38461043e01df6990495b9ecbb63b68af0553268.tar.gz
bas-38461043e01df6990495b9ecbb63b68af0553268.tar.xz
bas-38461043e01df6990495b9ecbb63b68af0553268.zip
[server] disable sequelize logging; [webapp] group module reload on open; loadinbar bug fix
Diffstat (limited to 'webapp/src/components/GroupModule.vue')
-rw-r--r--webapp/src/components/GroupModule.vue10
1 files changed, 7 insertions, 3 deletions
diff --git a/webapp/src/components/GroupModule.vue b/webapp/src/components/GroupModule.vue
index 36d6fcb..4630824 100644
--- a/webapp/src/components/GroupModule.vue
+++ b/webapp/src/components/GroupModule.vue
@@ -93,9 +93,13 @@ export default {
}
},
created () {
- this.$store.dispatch('groups/loadConfigs')
- this.$store.dispatch('groups/loadLists')
- if (this.tabChain.length === 0) this.$store.dispatch('groups/loadGroup', { id: 0, tabIndex: 0 })
+ if (this.tabChain.length === 0) {
+ this.$store.dispatch('groups/loadGroup', { id: 0, tabIndex: 0 })
+ this.$store.dispatch('groups/loadConfigs')
+ this.$store.dispatch('groups/loadLists')
+ } else {
+ this.reload()
+ }
if (this.$route.params.id !== '0') this.loadItem(this.$route.name, this.$route.params.id)
this.$router.replace({
name: 'GroupModule.' + this.tabChain[this.activeTab].tabType,