mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-13 16:14:07 -08:00
Prevent error being thrown in RLC while loading
This commit is contained in:
parent
c0aa67b8f0
commit
2c1838b109
|
@ -145,7 +145,12 @@ function onKeyDown(e: KeyboardEvent) {
|
|||
}
|
||||
}
|
||||
} 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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue