fix: Arrow navigation of mentions menu inside a table causes caret to move

This commit is contained in:
Tom Moor
2023-04-05 21:07:27 -04:00
parent 6c16ffb99a
commit a585a7d66b

View File

@@ -486,11 +486,15 @@ function SuggestionsMenu<T extends MenuItem>(props: Props<T>) {
};
window.addEventListener("mousedown", handleMouseDown);
window.addEventListener("keydown", handleKeyDown);
window.addEventListener("keydown", handleKeyDown, {
capture: true,
});
return () => {
window.removeEventListener("mousedown", handleMouseDown);
window.removeEventListener("keydown", handleKeyDown);
window.removeEventListener("keydown", handleKeyDown, {
capture: true,
});
};
}, [close, filtered, handleClickItem, props, selectedIndex]);