Merge
This commit is contained in:
parent
428fdfcc0a
commit
7d1af03e62
|
@ -77,6 +77,12 @@
|
||||||
$: runtimeExpression = readableToRuntimeBinding(enrichedBindings, value)
|
$: runtimeExpression = readableToRuntimeBinding(enrichedBindings, value)
|
||||||
$: requestUpdateEvaluation(runtimeExpression, context)
|
$: requestUpdateEvaluation(runtimeExpression, context)
|
||||||
$: bindingHelpers = new BindingHelpers(getCaretPosition, insertAtPos)
|
$: bindingHelpers = new BindingHelpers(getCaretPosition, insertAtPos)
|
||||||
|
$: {
|
||||||
|
// Ensure a valid side panel option is always selected
|
||||||
|
if (sidePanel && !sidePanelOptions.includes(sidePanel)) {
|
||||||
|
sidePanel = sidePanelOptions[0]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
const debouncedUpdateEvaluation = Utils.debounce((expression, context) => {
|
const debouncedUpdateEvaluation = Utils.debounce((expression, context) => {
|
||||||
expressionResult = processStringSync(expression || "", context)
|
expressionResult = processStringSync(expression || "", context)
|
||||||
|
|
Loading…
Reference in New Issue