We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b57dd76 commit a9c70e7Copy full SHA for a9c70e7
1 file changed
src/components/SidePanel/HelpModal/index.tsx
@@ -35,6 +35,7 @@ function Help({sidePanelTranslateX, closeSidePanel, shouldHideSidePanelBackdrop}
35
36
// Close Side Panel on escape key press
37
useKeyboardShortcut(CONST.KEYBOARD_SHORTCUTS.ESCAPE, () => closeSidePanel(), {isActive: !isExtraLargeScreenWidth, shouldBubble: false});
38
+ // Close Side Panel on debug key press i.e. opening the TestTools modal
39
useKeyboardShortcut(CONST.KEYBOARD_SHORTCUTS.DEBUG, () => closeSidePanel(), {shouldBubble: true});
40
41
// Close Side Panel on small screens when navigation keyboard shortcuts are used
0 commit comments