Skip to content

Commit 70ef661

Browse files
committed
Update DataBrowser.react.js
1 parent 0f4bfc4 commit 70ef661

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/dashboard/Data/Browser/DataBrowser.react.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1783,6 +1783,10 @@ export default class DataBrowser extends React.Component {
17831783
<div
17841784
className={styles.panelHeader}
17851785
onMouseDown={(e) => {
1786+
// Ignore right-click (button 2) and middle-click (button 1)
1787+
if (e.button !== 0) {
1788+
return;
1789+
}
17861790
e.preventDefault();
17871791
this.onMouseDownPanelCheckBox(objectId, isRowSelected);
17881792
}}

0 commit comments

Comments
 (0)