summaryrefslogtreecommitdiffstats
path: root/webapp/src/components/PermissionModuleEdit.vue
diff options
context:
space:
mode:
authorChristian Hofmaier2018-08-07 08:56:58 +0200
committerChristian Hofmaier2018-08-07 08:56:58 +0200
commit14635c696d7df5b4ccb2c423157b6fb917cb869b (patch)
tree1335a608f24226be4edc946cf491ca8155fbe3df /webapp/src/components/PermissionModuleEdit.vue
parent[groups] add ability to show all nested children and not just direkt children... (diff)
downloadbas-14635c696d7df5b4ccb2c423157b6fb917cb869b.tar.gz
bas-14635c696d7df5b4ccb2c423157b6fb917cb869b.tar.xz
bas-14635c696d7df5b4ccb2c423157b6fb917cb869b.zip
Roles of Users now in fancy boxes and other small ui polishing
Diffstat (limited to 'webapp/src/components/PermissionModuleEdit.vue')
-rw-r--r--webapp/src/components/PermissionModuleEdit.vue8
1 files changed, 6 insertions, 2 deletions
diff --git a/webapp/src/components/PermissionModuleEdit.vue b/webapp/src/components/PermissionModuleEdit.vue
index f94f483..e1cf45f 100644
--- a/webapp/src/components/PermissionModuleEdit.vue
+++ b/webapp/src/components/PermissionModuleEdit.vue
@@ -37,7 +37,7 @@
scrollable
>
<v-card>
- <v-card-title style="padding: 0px">
+ <v-card-title class="dialog-title">
<v-stepper v-model="step" horizontal style="width: 100%; background: transparent;" class="elevation-3">
<v-stepper-header>
<v-stepper-step
@@ -318,7 +318,7 @@ export default {
this.groupsSelected = value
},
loadGroups () {
- this.$http('/api/groups/getAll').then(response => {
+ this.$http('/api/groups/getList').then(response => {
this.groups = response.data
})
},
@@ -365,4 +365,8 @@ export default {
.list-header-margin {
margin-bottom: 10px;
}
+.dialog-title {
+ padding: 0px;
+ z-index: 1;
+}
</style>