diff --git a/apps/nextjs/src/app/[locale]/manage/users/_components/user-list.component.tsx b/apps/nextjs/src/app/[locale]/manage/users/_components/user-list.component.tsx index 79446ddd5..6cb9beadc 100644 --- a/apps/nextjs/src/app/[locale]/manage/users/_components/user-list.component.tsx +++ b/apps/nextjs/src/app/[locale]/manage/users/_components/user-list.component.tsx @@ -10,6 +10,7 @@ import { clientApi } from "@homarr/api/client"; import { useScopedI18n } from "@homarr/translation/client"; import { ActionIcon, + Avatar, Button, Flex, Group, @@ -41,6 +42,15 @@ export const UserListComponent = ({ { accessorKey: "name", header: "Name", + grow: 100, + Cell: ({ renderedCellValue, row }) => ( + + + + {renderedCellValue} + + + ), }, { accessorKey: "email", @@ -66,27 +76,11 @@ export const UserListComponent = ({ enableRowSelection: true, enableColumnOrdering: true, enableGlobalFilter: false, - enableRowActions: true, + enableRowActions: false, enableDensityToggle: false, enableFullScreenToggle: false, + layoutMode: "grid-no-grow", getRowId: (row) => row.id, - renderRowActions: ({ row }) => ( - - - - - - - - - - - - - ), renderTopToolbarCustomActions: () => (