mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-19 19:11:13 +00:00
fix(editor): Prevent error being thrown in RLC while loading (#11676)
This commit is contained in:
@@ -145,7 +145,12 @@ function onKeyDown(e: KeyboardEvent) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else if (e.key === 'Enter') {
|
} else if (e.key === 'Enter') {
|
||||||
emit('update:modelValue', sortedResources.value[hoverIndex.value].value);
|
const selected = sortedResources.value[hoverIndex.value]?.value;
|
||||||
|
|
||||||
|
// Selected resource can be empty when loading or empty results
|
||||||
|
if (selected) {
|
||||||
|
emit('update:modelValue', selected);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user