Merge branch '21216-multiplier-typo-fix' refs #21216
[arvados.git] / services / workbench2 / src / views / all-processes-panel / all-processes-panel.tsx
index ee53f99c3fe94e39c4fa2da096d8e7175d774223..88360ebcec9b43b77cc53520239a28830374b83a 100644 (file)
@@ -31,6 +31,7 @@ import { createTree } from "models/tree";
 import { getInitialProcessStatusFilters, getInitialProcessTypeFilters } from "store/resource-type-filters/resource-type-filters";
 import { getProcess } from "store/processes/process";
 import { ResourcesState } from "store/resources/resources";
+import { toggleOne, deselectAllOthers } from "store/multiselect/multiselect-actions";
 
 type CssRules = "toolbar" | "button" | "root";
 
@@ -143,6 +144,8 @@ export const AllProcessesPanel = withStyles(styles)(
             };
 
             handleRowClick = (uuid: string) => {
+                this.props.dispatch<any>(toggleOne(uuid))
+                this.props.dispatch<any>(deselectAllOthers(uuid))
                 this.props.dispatch<any>(loadDetailsPanel(uuid));
             };