mirror of
https://github.com/casdoor/casdoor.git
synced 2025-07-03 04:10:20 +08:00
feat: fix org's LDAP table wrong link (#3900)
This commit is contained in:
@ -100,7 +100,7 @@ class LdapTable extends React.Component {
|
|||||||
sorter: (a, b) => a.serverName.localeCompare(b.serverName),
|
sorter: (a, b) => a.serverName.localeCompare(b.serverName),
|
||||||
render: (text, record, index) => {
|
render: (text, record, index) => {
|
||||||
return (
|
return (
|
||||||
<Link to={`/ldaps/${record.id}`}>
|
<Link to={`/ldap/${record.owner}/${record.id}`}>
|
||||||
{text}
|
{text}
|
||||||
</Link>
|
</Link>
|
||||||
);
|
);
|
||||||
|
Reference in New Issue
Block a user