Use Link.

This commit is contained in:
Yang Luo
2021-03-26 21:58:10 +08:00
parent 6880c28194
commit fa358654e6
6 changed files with 26 additions and 19 deletions

View File

@ -98,9 +98,9 @@ class UserListPage extends React.Component {
sorter: (a, b) => a.owner.localeCompare(b.owner),
render: (text, record, index) => {
return (
<a href={`/organizations/${text}`}>
<Link to={`/organizations/${text}`}>
{text}
</a>
</Link>
)
}
},