mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-13 21:01:21 +08:00
fixed ux problems
This commit is contained in:
parent
82e3e43655
commit
372bd3296a
@ -134,17 +134,17 @@ function capitalizeFirstLetter(s: string) {
|
||||
}
|
||||
|
||||
export const commonUserColumns: ColumnDef<ExtendedServerUser>[] = [
|
||||
{
|
||||
accessorKey: "id",
|
||||
header: ({ column }) => <DataTableColumnHeader column={column} title="ID" />,
|
||||
cell: ({ row }) => <TextCell size={60}>{row.original.id}</TextCell>,
|
||||
},
|
||||
{
|
||||
accessorKey: "profileImageUrl",
|
||||
header: ({ column }) => <DataTableColumnHeader column={column} title="Avatar" />,
|
||||
cell: ({ row }) => <AvatarCell src={row.original.profileImageUrl || undefined} />,
|
||||
enableSorting: false,
|
||||
},
|
||||
{
|
||||
accessorKey: "id",
|
||||
header: ({ column }) => <DataTableColumnHeader column={column} title="ID" />,
|
||||
cell: ({ row }) => <TextCell size={60}>{row.original.id}</TextCell>,
|
||||
},
|
||||
{
|
||||
accessorKey: "displayName",
|
||||
header: ({ column }) => <DataTableColumnHeader column={column} title="Display Name" />,
|
||||
|
||||
Loading…
Reference in New Issue
Block a user