Skip to content

Commit 608a5c3

Browse files
authored
Fix User name clicked on Groups page redirecting incorrectly (#1516)
Fixes #1515
1 parent 297c980 commit 608a5c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

portal-ui/src/screens/Console/Groups/GroupsDetails.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ const GroupsDetails = ({ classes }: IGroupDetailsProps) => {
222222
{
223223
type: "view",
224224
onClick: (userName) => {
225-
history.push(`${IAM_PAGES.USERS_VIEW}/${userName}`);
225+
history.push(`${IAM_PAGES.USERS}/${userName}`);
226226
},
227227
},
228228
]}

0 commit comments

Comments
 (0)