X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/12fbb73269d10424383cdbd712201498cc8d013a..4f09ca588d03cc6e1be52190f902c21a0ae2a850:/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 4f283a6c9c..5672469677 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);