X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/151c8c646b7fd78fc9ca2b8174eae11bce67873f..77f285190a3ae77a1075b249ca964b1afeed7ca2:/src/views/process-panel/process-panel.tsx diff --git a/src/views/process-panel/process-panel.tsx b/src/views/process-panel/process-panel.tsx index 4f283a6c..56724696 100644 --- a/src/views/process-panel/process-panel.tsx +++ b/src/views/process-panel/process-panel.tsx @@ -11,7 +11,8 @@ import { matchProcessRoute } from '~/routes/routes'; import { ProcessPanelRootDataProps, ProcessPanelRootActionProps, ProcessPanelRoot } from './process-panel-root'; import { ProcessPanel as ProcessPanelState} from '~/store/process-panel/process-panel'; import { groupBy } from 'lodash'; -import { toggleProcessPanelFilter } from '~/store/process-panel/process-panel-actions'; +import { toggleProcessPanelFilter, navigateToOutput } from '~/store/process-panel/process-panel-actions'; +import { openProcessInputDialog } from '~/store/processes/process-input-actions'; const mapStateToProps = ({ router, resources, processPanel }: RootState): ProcessPanelRootDataProps => { const pathname = router.location ? router.location.pathname : ''; @@ -32,7 +33,9 @@ const mapDispatchToProps = (dispatch: Dispatch): ProcessPanelRootActionProps => }, onToggle: status => { dispatch(toggleProcessPanelFilter(status)); - } + }, + openProcessInputDialog: (uuid) => dispatch(openProcessInputDialog(uuid)), + navigateToOutput: (uuid) => dispatch(navigateToOutput(uuid)) }); export const ProcessPanel = connect(mapStateToProps, mapDispatchToProps)(ProcessPanelRoot);