13494: Minor UI fixes.
[arvados-workbench2.git] / src / views / collection-panel / collection-panel.tsx
index f41e8967625624a0b801bd4e197c1de0a1cfadaf..d3566f36ff45f515344874a6f5d14b28b58c7e31 100644 (file)
@@ -261,9 +261,10 @@ export const CollectionPanel = withStyles(styles)(
                 this.props.dispatch<any>(deleteCollectionTag(key, value));
             }
 
-            openCollectionDetails = () => {
+            openCollectionDetails = (e: React.MouseEvent<HTMLElement>) => {
                 const { item } = this.props;
                 if (item) {
+                    e.stopPropagation();
                     this.props.dispatch(openDetailsPanel(item.uuid));
                 }
             }