Propagate Enter key events in SuggestionsMenu so that handleLinkInputKeydown() can handle it. (#6556)

This commit is contained in:
Kelvin Tan
2024-02-19 17:28:58 -08:00
committed by GitHub
parent 4e7ea0b7f1
commit 353af25d5c

View File

@@ -467,7 +467,6 @@ function SuggestionsMenu<T extends MenuItem>(props: Props<T>) {
if (event.key === "Enter") {
event.preventDefault();
event.stopPropagation();
const item = filtered[selectedIndex];