Skip to content

Commit c684aea

Browse files
authored
Merge branch 'develop' into fix#2327
2 parents 00a7db9 + da9900c commit c684aea

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

client/components/Nav/NavBar.jsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,10 @@ function NavBar({ children, className }) {
7171
onFocus: clearHideTimeout
7272
}),
7373
createMenuItemHandlers: (dropdown) => ({
74-
onMouseUp: () => {
74+
onMouseUp: (e) => {
75+
if (e.button === 2) {
76+
return;
77+
}
7578
setDropdownOpen('none');
7679
},
7780
onBlur: handleBlur,

0 commit comments

Comments
 (0)