X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/562687ce72e709d485aa47773117a51a764a6606..8cc7190e7fdaf002e8f372e3146e377aaeed8539:/services/workbench2/src/views-components/data-explorer/data-explorer.tsx diff --git a/services/workbench2/src/views-components/data-explorer/data-explorer.tsx b/services/workbench2/src/views-components/data-explorer/data-explorer.tsx index 034399b124..37a15bcf77 100644 --- a/services/workbench2/src/views-components/data-explorer/data-explorer.tsx +++ b/services/workbench2/src/views-components/data-explorer/data-explorer.tsx @@ -23,7 +23,7 @@ interface Props { working?: boolean; } -const mapStateToProps = ({ progressIndicator, dataExplorer, router, multiselect, detailsPanel, properties}: RootState, { id }: Props) => { +const mapStateToProps = ({ progressIndicator, dataExplorer, router, multiselect, selectedResourceUuid, properties}: RootState, { id }: Props) => { const working = !!progressIndicator.some(p => p.id === id && p.working); const dataExplorerState = getDataExplorer(dataExplorer, id); const currentRoute = router.location ? router.location.pathname : ""; @@ -34,6 +34,7 @@ const mapStateToProps = ({ progressIndicator, dataExplorer, router, multiselect, paperKey: currentRoute, currentRouteUuid: properties.currentRouteUuid, isMSToolbarVisible, + selectedResourceUuid, checkedList: multiselect.checkedList, working, };