X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/151c8c646b7fd78fc9ca2b8174eae11bce67873f..ead22eaffc696e9619d0ba7a71c8d54099200685:/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..8108cd1e 100644 --- a/src/views/process-panel/process-panel.tsx +++ b/src/views/process-panel/process-panel.tsx @@ -12,6 +12,7 @@ import { ProcessPanelRootDataProps, ProcessPanelRootActionProps, ProcessPanelRoo import { ProcessPanel as ProcessPanelState} from '~/store/process-panel/process-panel'; import { groupBy } from 'lodash'; import { toggleProcessPanelFilter } 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,8 @@ const mapDispatchToProps = (dispatch: Dispatch): ProcessPanelRootActionProps => }, onToggle: status => { dispatch(toggleProcessPanelFilter(status)); - } + }, + openProcessInputDialog: (uuid) => dispatch(openProcessInputDialog(uuid)) }); export const ProcessPanel = connect(mapStateToProps, mapDispatchToProps)(ProcessPanelRoot);