1
0
Fork 0
mirror of synced 2024-06-01 18:20:18 +12:00

changing bindings key

This commit is contained in:
Peter Clement 2022-02-11 15:37:43 +00:00
parent 350edc2aec
commit 2ead1c59be
2 changed files with 5 additions and 4 deletions

View file

@ -333,12 +333,10 @@ const getRowBindings = () => {
bindings = [
{
type: "context",
runtimeBinding: `${safeState}.${makePropSafe("row")}`,
readableBinding: "Rows",
runtimeBinding: `${safeState}`,
readableBinding: "Row Selection.Rows",
},
]
return bindings
}
return bindings
}

View file

@ -24,5 +24,8 @@ export const enrichDataBinding = async (input, context) => {
* Props are deeply cloned so that no mutation is done to the source object.
*/
export const enrichDataBindings = (props, context) => {
console.log(props)
console.log(context)
return processObjectSync(cloneDeep(props), context)
}