21128: multiselect vs details panel resolved Arvados-DCO-1.1-Signed-off-by: Lisa...
[arvados-workbench2.git] / src / views / project-panel / project-panel.tsx
index 2cc751bffd6e78526b38ea07e8d0a5ca4d0683f2..a85455276f5214c0183d9bb116314df840cab94b 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 { selectOne } 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>(selectOne(uuid))
                 this.props.dispatch<any>(loadDetailsPanel(uuid));
             };
         }