Merge pull request #12962 from Budibase/fix/binding-issues
Fix table slots providing global context rather than local context
This commit is contained in:
commit
116e1fa7d5
|
@ -3,9 +3,9 @@
|
|||
|
||||
export let row
|
||||
|
||||
const { Provider } = getContext("sdk")
|
||||
const { Provider, ContextScopes } = getContext("sdk")
|
||||
</script>
|
||||
|
||||
<Provider data={row}>
|
||||
<Provider data={row} scope={ContextScopes.Local}>
|
||||
<slot />
|
||||
</Provider>
|
||||
|
|
Loading…
Reference in New Issue