13493: Merge branch 'master' into 13494-collection-version-browser
[arvados-workbench2.git] / src / views / collection-panel / collection-panel.tsx
index 4cdd8c55f0d231ed5925a147ff94ba6482b94145..feade60c1d500c86b9655f84beff95793dd434bd 100644 (file)
@@ -262,9 +262,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));
                 }
             }