fix: fix invalid url in applications page (#1389)

This commit is contained in:
imp2002
2022-12-10 22:06:21 +08:00
committed by GitHub
parent b41d8652f0
commit 19dce838d1
3 changed files with 4 additions and 4 deletions

View File

@ -87,7 +87,7 @@ class AdapterListPage extends BaseListPage {
...this.getColumnSearchProps("name"),
render: (text, record, index) => {
return (
<Link to={`/adapters/${text}`}>
<Link to={`/adapters/${record.organization}/${text}`}>
{text}
</Link>
);