Merge branch '21128-toolbar-context-menu'
[arvados-workbench2.git] / src / views / project-panel / project-panel.tsx
index 2cc751bffd6e78526b38ea07e8d0a5ca4d0683f2..efaf53eb49b21334d87227740cfcaabf9ceaaa33 100644 (file)
@@ -52,6 +52,7 @@ import { CollectionResource } from 'models/collection';
 import { resourceIsFrozen } from 'common/frozen-resources';
 import { ProjectResource } from 'models/project';
 import { NotFoundView } from 'views/not-found-panel/not-found-panel';
+import { toggleOne } from 'store/multiselect/multiselect-actions';
 
 type CssRules = 'root' | 'button';
 
@@ -323,6 +324,7 @@ export const ProjectPanel = withStyles(styles)(
             };
 
             handleRowClick = (uuid: string) => {
+                this.props.dispatch<any>(toggleOne(uuid))
                 this.props.dispatch<any>(loadDetailsPanel(uuid));
             };
         }