1
0
Fork 0
mirror of synced 2024-10-05 12:34:50 +13:00

minor fixes

This commit is contained in:
kevmodrome 2020-10-15 20:05:55 +02:00
parent 5f83cfc9c5
commit 71acc10e9c
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}`
},
})