1
0
Fork 0
mirror of synced 2024-10-01 01:28:51 +13:00

url now takes the same format as in other components

This commit is contained in:
kevmodrome 2020-10-15 20:10:06 +02:00
parent f3a759f968
commit db2946d360
No known key found for this signature in database
GPG key ID: E8F9CD141E63BF38
2 changed files with 2 additions and 1 deletions

View file

@ -82,6 +82,7 @@
width: 25,
flex: 0,
editable: false,
sortable: false,
cellRenderer: getRenderer({
type: '_id',
options: detailUrl

View file

@ -143,7 +143,7 @@ function viewDetailsRenderer(options) {
new ViewDetails({
target: container,
props: {
url: `/${options}/${params.data._id}`,
url: `${options}/${params.data._id}`,
},
})