Skip to content

Commit

Permalink
revert
Browse files Browse the repository at this point in the history
  • Loading branch information
astrohunter62 committed Oct 13, 2023
1 parent 2ca6049 commit d83fb5c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/LHNOptionsList/OptionRowLHN.js
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ function OptionRowLHN(props) {
}}
onMouseDown={(e) => {
// Allow composer blur on right click
if (!e || e.button === 2) {
if (!e) {
return;
}

Expand All @@ -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
Expand Down

0 comments on commit d83fb5c

Please sign in to comment.