Skip to content

Commit

Permalink
fix role list link error
Browse files Browse the repository at this point in the history
  • Loading branch information
nomeguy committed Feb 25, 2023
1 parent 8aefa02 commit 05fade1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/RoleListPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ class RoleListPage extends BaseListPage {
...this.getColumnSearchProps("name"),
render: (text, record, index) => {
return (
<Link to={`/roles/${text}`}>
<Link to={`/roles/${record.owner}/${record.name}`}>
{text}
</Link>
);
Expand Down

0 comments on commit 05fade1

Please sign in to comment.