fix(editor): Prevent error being thrown in RLC while loading (#11676)

This commit is contained in:
Elias Meire 2024-11-13 14:47:27 +01:00 committed by GitHub
parent 0d8aada490
commit ca8cb455ba
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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);
}
}
}