From bf777896857076ba9e034bd36eda8e392dbcb067 Mon Sep 17 00:00:00 2001 From: krishna2323 Date: Sun, 28 Jul 2024 16:58:45 +0530 Subject: [PATCH] fix: Context menu - Unable to add reaction by Enter key/navigate from first option to last by up key. Signed-off-by: krishna2323 --- .../home/report/ContextMenu/BaseReportActionContextMenu.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/home/report/ContextMenu/BaseReportActionContextMenu.tsx b/src/pages/home/report/ContextMenu/BaseReportActionContextMenu.tsx index 7a191d7bff03..bfa90ef698c0 100755 --- a/src/pages/home/report/ContextMenu/BaseReportActionContextMenu.tsx +++ b/src/pages/home/report/ContextMenu/BaseReportActionContextMenu.tsx @@ -203,7 +203,7 @@ function BaseReportActionContextMenu({ menuItemRefs.current[focusedIndex]?.triggerPressAndUpdateSuccess?.(); setFocusedIndex(-1); }, - {isActive: shouldEnableArrowNavigation}, + {isActive: shouldEnableArrowNavigation, shouldPreventDefault: false}, ); const openOverflowMenu = (event: GestureResponderEvent | MouseEvent, anchorRef: MutableRefObject) => {