diff --git a/src/components/LHNOptionsList/OptionRowLHN.js b/src/components/LHNOptionsList/OptionRowLHN.js index a0d3c59bdd5c..897019f77a1c 100644 --- a/src/components/LHNOptionsList/OptionRowLHN.js +++ b/src/components/LHNOptionsList/OptionRowLHN.js @@ -175,7 +175,7 @@ function OptionRowLHN(props) { }} onMouseDown={(e) => { // Allow composer blur on right click - if (!e || e.button === 2) { + if (!e) { return; } @@ -185,7 +185,7 @@ function OptionRowLHN(props) { testID={optionItem.reportID} onSecondaryInteraction={(e) => { showPopover(e); - // Composer blur when opening context menu + // // Ensure that we blur the composer when opening context menu, so that only one component is focused at a time DomUtils.getActiveElement().blur(); }} withoutFocusOnSecondaryInteraction