1
0
Fork 0
mirror of synced 2024-09-11 23:16:00 +12:00

changing bindings key

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

View file

@ -333,12 +333,10 @@ const getRowBindings = () => {
bindings = [ bindings = [
{ {
type: "context", type: "context",
runtimeBinding: `${safeState}.${makePropSafe("row")}`, runtimeBinding: `${safeState}`,
readableBinding: "Rows", readableBinding: "Row Selection.Rows",
}, },
] ]
return bindings
} }
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. * Props are deeply cloned so that no mutation is done to the source object.
*/ */
export const enrichDataBindings = (props, context) => { export const enrichDataBindings = (props, context) => {
console.log(props)
console.log(context)
return processObjectSync(cloneDeep(props), context) return processObjectSync(cloneDeep(props), context)
} }