summaryrefslogtreecommitdiffstats
path: root/webapp/src/components/PermissionModuleUserList.vue
diff options
context:
space:
mode:
authorChristian Hofmaier2019-02-16 06:02:00 +0100
committerChristian Hofmaier2019-02-16 06:02:00 +0100
commit318085618cbb2a54e3279e5c1bd3528104e77d99 (patch)
tree6dbadae976919e560f3a3c792560dd219c3eef46 /webapp/src/components/PermissionModuleUserList.vue
parent[permissionmanager] Permission API Call for Frontend Checks (diff)
downloadbas-318085618cbb2a54e3279e5c1bd3528104e77d99.tar.gz
bas-318085618cbb2a54e3279e5c1bd3528104e77d99.tar.xz
bas-318085618cbb2a54e3279e5c1bd3528104e77d99.zip
[permissionmanager] Change recursive selection, fix layout/table issues
- remove recursive-switch for groups - add btn to add subgroups - use RecycleScroller for better performance - fix layout issue when long names were used in the summary - fix issues that data-tables were not loading correctly - you can now correctly go back to the step you were before
Diffstat (limited to 'webapp/src/components/PermissionModuleUserList.vue')
-rw-r--r--webapp/src/components/PermissionModuleUserList.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/webapp/src/components/PermissionModuleUserList.vue b/webapp/src/components/PermissionModuleUserList.vue
index 276b4af..15f003b 100644
--- a/webapp/src/components/PermissionModuleUserList.vue
+++ b/webapp/src/components/PermissionModuleUserList.vue
@@ -23,7 +23,7 @@
<data-table :value="selectedUsers" @input="$store.commit('permissions/setSelectedUsers', $event)" :headers="headers" :items="users">
<div slot="roles" slot-scope="row">
<template v-for="role in row.item.roles">
- <v-tooltip bottom :key="role.id">
+ <v-tooltip top :key="role.id">
<v-chip small slot="activator">{{ role.name }}</v-chip>
<span>{{ role.descr }}</span>
</v-tooltip>