21128: fixed unwanted rowselects on other operational clicks Arvados-DCO-1.1-Signed...
[arvados-workbench2.git] / src / components / data-explorer / data-explorer.tsx
index ad5762dfeb1bac4bda716b02ff60bdd646c6dbf0..f9c62a09d7d5fee64ac38fc9521e700213f26e1e 100644 (file)
@@ -368,7 +368,10 @@ export const DataExplorer = withStyles(styles)(
                 >
                     <IconButton
                         className={this.props.classes.moreOptionsButton}
-                        onClick={event => this.props.onContextMenu(event, item)}
+                        onClick={event => {
+                            event.stopPropagation()
+                            this.props.onContextMenu(event, item)
+                        }}
                     >
                         <MoreVerticalIcon />
                     </IconButton>