improvements to create user

This commit is contained in:
miloschwartz
2026-09-11 11:39:33 -04:00
committed by Owen
parent dfe7f60244
commit 162dade852
3 changed files with 218 additions and 208 deletions
+14 -1
View File
@@ -171,7 +171,20 @@ export default function UsersTable({
<Icon className="ml-2 h-4 w-4" />
</Button>
);
}
},
cell: ({ row }) => (
<span className="inline-flex gap-1 items-center">
{row.original.displayUsername}{" "}
{row.original.id === user.userId && (
<>
<span className="text-muted-foreground">
&middot;
</span>{" "}
<span className="text-primary">you</span>
</>
)}
</span>
)
},
{
accessorKey: "idpName",