From eb4dac91f08d0e1f35f7143fcc941052a4e40375 Mon Sep 17 00:00:00 2001 From: cstns Date: Thu, 9 Oct 2025 11:49:30 +0300 Subject: [PATCH] Use the UserCell component in the User Access table to improve user identification --- frontend/src/pages/application/Settings/UserAccess.vue | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/frontend/src/pages/application/Settings/UserAccess.vue b/frontend/src/pages/application/Settings/UserAccess.vue index f0caa5b857..fcf22a8996 100644 --- a/frontend/src/pages/application/Settings/UserAccess.vue +++ b/frontend/src/pages/application/Settings/UserAccess.vue @@ -19,6 +19,7 @@ import { mapGetters } from 'vuex' import teamClient from '../../../api/team.js' import EditApplicationPermissionsDialog from '../../../components/dialogs/EditApplicationPermissionsDialog.vue' +import UserCell from '../../../components/tables/cells/UserCell.vue' import usePermissions from '../../../composables/Permissions.js' import RoleRow from './components/RoleRow.vue' @@ -50,7 +51,10 @@ export default defineComponent({ { key: 'name', label: 'User', - sortable: true + sortable: true, + component: { + is: markRaw(UserCell) + } }, { key: 'role',