From dd547471e6c49f0c0523ecb64adfdb6bfa0a07fd Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Thu, 28 May 2026 19:07:41 +0000 Subject: [PATCH] Disable role sorting in people list The role order field is not supported on the GraphQL profile ordering path, which makes role-based sorting fail at runtime. Keep the role column visible for users who can manage roles, but render it as a regular table header instead of a sortable one. Signed-off-by: Cursor Agent Co-authored-by: Bryan FRIMIN --- .../pages/iam/organizations/people/_components/PeopleList.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/console/src/pages/iam/organizations/people/_components/PeopleList.tsx b/apps/console/src/pages/iam/organizations/people/_components/PeopleList.tsx index 16cd99824..9f6cf2141 100644 --- a/apps/console/src/pages/iam/organizations/people/_components/PeopleList.tsx +++ b/apps/console/src/pages/iam/organizations/people/_components/PeopleList.tsx @@ -104,7 +104,7 @@ export function PeopleList(props: { {__("Name")} {__("Status")} {__("Email")} - {canManageRoles && {__("Role")}} + {canManageRoles && {__("Role")}} {__("Created on")}