changing bindings key
This commit is contained in:
parent
350edc2aec
commit
2ead1c59be
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
|
@ -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)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue