diff --git a/dashboard/src/views/UsersView.vue b/dashboard/src/views/UsersView.vue
index e1711a221..baa73e0a7 100644
--- a/dashboard/src/views/UsersView.vue
+++ b/dashboard/src/views/UsersView.vue
@@ -28,14 +28,19 @@ const usersColumns = {
},
user: {
label: t('users.users.user'),
- sort: true
+ nowrap: true,
+ sort: true,
},
groups: {
label: t('users.users.groups'),
sort: true,
hideMobile: true,
+ nowrap: true,
+ width: '400px',
},
- actions: {}
+ actions: {
+ width: '55px',
+ }
};
const actionMenuModel = ref([]);
@@ -270,7 +275,7 @@ onMounted(async () => {
-
+
@@ -284,7 +289,9 @@ onMounted(async () => {
{{ user.email }}
- {{ user.groupIds.length }}
+
+ {{ user.groupIds.map(gid => groupsById[gid] ? groupsById[gid].name : gid).join(' ') }}
+