Skip to content
Snippets Groups Projects
Verified Commit 686757e3 authored by Timm Fitschen's avatar Timm Fitschen
Browse files

fix routing

parent 1b4c0e01
No related branches found
No related tags found
No related merge requests found
Pipeline #48814 passed
......@@ -26,7 +26,7 @@ const columns: Array<GridColDef<OperationsLogRecord>> = [
type: 'string',
renderCell: (params): any => {
console.log('params', params)
return <Link href={`/fdo/${params.id}`}>{params.id}</Link>
return <Link href={`/fdo/show/${params.id}`}>{params.id}</Link>
}
}
]
......
......@@ -18,7 +18,7 @@ const columns: Array<GridColDef<IRepository>> = [
type: 'string',
width: 200,
renderCell: (params) => {
return <Link href={'./repositories/' + params.value}>{params.value}</Link>
return params.value
}
}, {
field: 'description',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment