Fix merge
This commit is contained in:
parent
1a8a649be4
commit
cef0911950
|
@ -172,16 +172,8 @@
|
||||||
|
|
||||||
const updateValue = val => {
|
const updateValue = val => {
|
||||||
const runtimeExpression = readableToRuntimeBinding(enrichedBindings, val)
|
const runtimeExpression = readableToRuntimeBinding(enrichedBindings, val)
|
||||||
<<<<<<< HEAD
|
|
||||||
valid = isValid(runtimeExpression)
|
|
||||||
if (valid) {
|
|
||||||
dispatch("change", val)
|
|
||||||
requestEval(runtimeExpression, context, snippets)
|
|
||||||
}
|
|
||||||
=======
|
|
||||||
dispatch("change", val)
|
dispatch("change", val)
|
||||||
requestUpdateEvaluation(runtimeExpression, context)
|
requestEval(runtimeExpression, context, snippets)
|
||||||
>>>>>>> fe12a8606438d41437e21729068b91038ba6df37
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const onSelectHelper = (helper, js) => {
|
const onSelectHelper = (helper, js) => {
|
||||||
|
@ -232,7 +224,6 @@
|
||||||
jsValue = encodeJSBinding(e.detail)
|
jsValue = encodeJSBinding(e.detail)
|
||||||
updateValue(jsValue)
|
updateValue(jsValue)
|
||||||
}
|
}
|
||||||
<<<<<<< HEAD
|
|
||||||
|
|
||||||
onMount(() => {
|
onMount(() => {
|
||||||
// Set the initial mode appropriately
|
// Set the initial mode appropriately
|
||||||
|
@ -245,12 +236,7 @@
|
||||||
|
|
||||||
// Set the initial side panel
|
// Set the initial side panel
|
||||||
sidePanel = sidePanelOptions[0]
|
sidePanel = sidePanelOptions[0]
|
||||||
|
|
||||||
// Determine if our initial value is valid
|
|
||||||
valid = isValid(readableToRuntimeBinding(enrichedBindings, value))
|
|
||||||
})
|
})
|
||||||
=======
|
|
||||||
>>>>>>> fe12a8606438d41437e21729068b91038ba6df37
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<DrawerContent padding={false}>
|
<DrawerContent padding={false}>
|
||||||
|
|
Loading…
Reference in New Issue