summaryrefslogtreecommitdiffstats
path: root/webapp/src/components/GroupModuleDialog.vue
diff options
context:
space:
mode:
authorUdo Walter2018-08-07 05:25:44 +0200
committerUdo Walter2018-08-07 05:25:44 +0200
commit8f64402237a74ddb380b7e9650fa5897505a665f (patch)
tree692971f50fa7d442bf6fa3be959e72f588626774 /webapp/src/components/GroupModuleDialog.vue
parentmerge (diff)
downloadbas-8f64402237a74ddb380b7e9650fa5897505a665f.tar.gz
bas-8f64402237a74ddb380b7e9650fa5897505a665f.tar.xz
bas-8f64402237a74ddb380b7e9650fa5897505a665f.zip
[groups] add ability to show all nested children and not just direkt children + bug fixes
Diffstat (limited to 'webapp/src/components/GroupModuleDialog.vue')
-rw-r--r--webapp/src/components/GroupModuleDialog.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/webapp/src/components/GroupModuleDialog.vue b/webapp/src/components/GroupModuleDialog.vue
index 924d35f..67cf2c9 100644
--- a/webapp/src/components/GroupModuleDialog.vue
+++ b/webapp/src/components/GroupModuleDialog.vue
@@ -61,7 +61,7 @@
<v-icon left>create</v-icon>{{ $t('new') }}
</v-btn>
</v-card-title>
- <v-card-text v-if="action === 'add'" class="table-container">
+ <v-card-text style="height: 616px" v-if="action === 'add'" class="table-container">
<v-divider></v-divider>
<component-search-table v-model="selected" :headers="headers" :items="items" select-all>
<template slot="items" slot-scope="row">
@@ -160,7 +160,7 @@ export default {
},
newItem () {
this.setDialog({ show: false })
- var item = { tabType: this.dialog.info.type }
+ var item = { id: 'create', tabType: this.dialog.info.type }
if (this.dialog.info.type === 'group') item.parents = [this.tabChain[this.dialog.info.tabIndex]]
else if (this.dialog.info.type === 'client') item.groups = [this.tabChain[this.dialog.info.tabIndex]]
this.setTab({ index: this.dialog.info.tabIndex + 1, item })