X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/d940d88f991c14785110855ba0ee79ea5f401276..976db4132cdb68bddb5a185d74a053355f91e549:/services/workbench2/src/views/shared-with-me-panel/shared-with-me-panel.tsx diff --git a/services/workbench2/src/views/shared-with-me-panel/shared-with-me-panel.tsx b/services/workbench2/src/views/shared-with-me-panel/shared-with-me-panel.tsx index 250447ea95..f3f827d146 100644 --- a/services/workbench2/src/views/shared-with-me-panel/shared-with-me-panel.tsx +++ b/services/workbench2/src/views/shared-with-me-panel/shared-with-me-panel.tsx @@ -41,6 +41,7 @@ import { } from 'views-components/data-explorer/renderers'; import { DataTableFilterItem } from 'components/data-table-filters/data-table-filters'; import { GroupContentsResource } from 'services/groups-service/groups-service'; +import { toggleOne } from 'store/multiselect/multiselect-actions'; import { DataColumns } from 'components/data-table/data-table'; import { ContainerRequestState } from 'models/container-request'; import { ProjectResource } from 'models/project'; @@ -280,6 +281,7 @@ export const SharedWithMePanel = withStyles(styles)( } handleRowClick = (uuid: string) => { + this.props.dispatch(toggleOne(uuid)) this.props.dispatch(loadDetailsPanel(uuid)); } }