fix: correct edit URL in model list (#1108)

Co-authored-by: Mario Fischer <mario.fischer@inmanet.de>
This commit is contained in:
Mario Fischer
2022-09-06 18:54:27 +02:00
committed by GitHub
parent 2f9f946c87
commit a399184cfc

View File

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