changing bindings key
This commit is contained in:
parent
d45c107db7
commit
5a88c89baf
|
@ -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
|
||||
}
|
||||
|
|
|
@ -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)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue