summaryrefslogtreecommitdiffstats
path: root/webapp/src/components/GroupModuleGroupList.vue
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/src/components/GroupModuleGroupList.vue')
-rw-r--r--webapp/src/components/GroupModuleGroupList.vue5
1 files changed, 4 insertions, 1 deletions
diff --git a/webapp/src/components/GroupModuleGroupList.vue b/webapp/src/components/GroupModuleGroupList.vue
index 1984ef8..896eeaa 100644
--- a/webapp/src/components/GroupModuleGroupList.vue
+++ b/webapp/src/components/GroupModuleGroupList.vue
@@ -24,7 +24,7 @@
<template>
<div>
<v-card>
- <component-search-table v-model="selected" :headers="headers" :items="groups" select-all>
+ <component-search-table v-model="selected" :headers="headers" :items="groups" select-all :loading="loading">
<template slot="items" slot-scope="row">
<tr :style="row.color" @click="row.data.selected = !row.data.selected" @dblclick="loadGroup(row.data.item)">
<td class="narrow-td">
@@ -82,6 +82,9 @@ export default {
{ text: this.$t('description'), value: 'description' },
{ sortable: false }
]
+ },
+ loading () {
+ return this.$store.state.groups.tabChain[this.tabIndex].loading
}
},
watch: {