Update autoscreens with new dataprovier props
This commit is contained in:
parent
b734d861ea
commit
9c7f5f98b7
|
@ -90,10 +90,17 @@ const createScreen = table => {
|
||||||
tableId: table._id,
|
tableId: table._id,
|
||||||
type: "table",
|
type: "table",
|
||||||
},
|
},
|
||||||
filter: {
|
filter: [
|
||||||
_id: `{{ ${makePropSafe("url")}.${makePropSafe("id")} }}`,
|
{
|
||||||
},
|
field: "_id",
|
||||||
|
operator: "equal",
|
||||||
|
type: "string",
|
||||||
|
value: `{{ ${makePropSafe("url")}.${makePropSafe("id")} }}`,
|
||||||
|
valueType: "Binding",
|
||||||
|
},
|
||||||
|
],
|
||||||
limit: 1,
|
limit: 1,
|
||||||
|
paginate: false,
|
||||||
})
|
})
|
||||||
|
|
||||||
const repeater = new Component("@budibase/standard-components/repeater")
|
const repeater = new Component("@budibase/standard-components/repeater")
|
||||||
|
|
|
@ -80,6 +80,7 @@ const createScreen = table => {
|
||||||
tableId: table._id,
|
tableId: table._id,
|
||||||
type: "table",
|
type: "table",
|
||||||
},
|
},
|
||||||
|
paginate: false,
|
||||||
})
|
})
|
||||||
|
|
||||||
const spectrumTable = new Component("@budibase/standard-components/table")
|
const spectrumTable = new Component("@budibase/standard-components/table")
|
||||||
|
|
Loading…
Reference in New Issue