mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-19 11:01:15 +00:00
fix(editor): Fix '=' handling in expressions (#13129)
This commit is contained in:
@@ -1067,11 +1067,11 @@ watch(remoteParameterOptionsLoading, () => {
|
||||
tempValue.value = displayValue.value as string;
|
||||
});
|
||||
|
||||
// Focus input field when changing from fixed value to expression
|
||||
// Focus input field when changing between fixed and expression
|
||||
watch(isModelValueExpression, async (isExpression, wasExpression) => {
|
||||
if (!props.isReadOnly && isExpression && !wasExpression) {
|
||||
if (!props.isReadOnly && isExpression !== wasExpression) {
|
||||
await nextTick();
|
||||
inputField.value?.focus();
|
||||
await setFocus();
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user