From ca5ab6edf50c69a0196c9d86ce62118a0b6b0fdd Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Wed, 10 Dec 2025 20:21:34 +0100 Subject: [PATCH] Show user avatar in user listing Moving the role icon to the username and hiding external directory flag. This is not too useful anyways --- dashboard/src/views/UsersView.vue | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/dashboard/src/views/UsersView.vue b/dashboard/src/views/UsersView.vue index cbb765329..630ef3ba6 100644 --- a/dashboard/src/views/UsersView.vue +++ b/dashboard/src/views/UsersView.vue @@ -23,8 +23,8 @@ const profileModel = ProfileModel.create(); const dashboardModel = DashboardModel.create(); const usersColumns = { - role: { - width: '33.5px' + avatar: { + width: '40px' }, user: { label: t('users.users.user'), @@ -279,18 +279,21 @@ onMounted(async () => { -