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, control: TableViewSelect,
}, },
{ {
label: "Detail URL", label: "Table URL",
key: "detailUrl", key: "detailUrl",
placeholder: "tableName/", placeholder: "tableName",
control: Input, control: Input,
}, },
{ {

View file

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

View file

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