From 608a5c3787cf4edcf64e3e562bf4f22345c2a6e7 Mon Sep 17 00:00:00 2001 From: Kaan Kabalak Date: Thu, 3 Feb 2022 19:07:23 -0800 Subject: [PATCH] Fix User name clicked on Groups page redirecting incorrectly (#1516) Fixes #1515 --- portal-ui/src/screens/Console/Groups/GroupsDetails.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/portal-ui/src/screens/Console/Groups/GroupsDetails.tsx b/portal-ui/src/screens/Console/Groups/GroupsDetails.tsx index 78c366801..2998fb71f 100644 --- a/portal-ui/src/screens/Console/Groups/GroupsDetails.tsx +++ b/portal-ui/src/screens/Console/Groups/GroupsDetails.tsx @@ -222,7 +222,7 @@ const GroupsDetails = ({ classes }: IGroupDetailsProps) => { { type: "view", onClick: (userName) => { - history.push(`${IAM_PAGES.USERS_VIEW}/${userName}`); + history.push(`${IAM_PAGES.USERS}/${userName}`); }, }, ]}