1
0
Fork 0
mirror of synced 2024-09-30 17:18:14 +13:00

minor fixes

This commit is contained in:
kevmodrome 2020-10-15 20:05:55 +02:00
parent b9a55d7033
commit 67e575bd94
No known key found for this signature in database
GPG key ID: E8F9CD141E63BF38
3 changed files with 5 additions and 9 deletions

View file

@ -328,9 +328,9 @@ export default {
control: TableViewSelect,
},
{
label: "Detail URL",
label: "Table URL",
key: "detailUrl",
placeholder: "tableName/",
placeholder: "tableName",
control: Input,
},
{

View file

@ -60,10 +60,6 @@
const jsonTable = await _bb.api.get(`/api/tables/${datasource.tableId}`)
table = await jsonTable.json()
schema = table.schema
// schema._id = {
// type: '_id',
// options: detailUrl
// }
}
columnDefs = Object.keys(schema).map((key, i) => {
@ -83,12 +79,12 @@
columnDefs = [...columnDefs, {
headerName: 'Details',
field: '_id',
width: 50,
width: 25,
flex: 0,
editable: false,
cellRenderer: getRenderer({
type: '_id',
options: detailUrl || 'someTableName'
options: detailUrl
}),
autoHeight: true,
}]

View file

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