X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/a950096809e19f48ec006651227222d60e4fa86c..77c5d854b58b46395c5db5531268494d40f27786:/src/views-components/dialog-forms/move-process-dialog.ts?ds=sidebyside diff --git a/src/views-components/dialog-forms/move-process-dialog.ts b/src/views-components/dialog-forms/move-process-dialog.ts index baea34bc..d09e6b86 100644 --- a/src/views-components/dialog-forms/move-process-dialog.ts +++ b/src/views-components/dialog-forms/move-process-dialog.ts @@ -3,12 +3,13 @@ // SPDX-License-Identifier: AGPL-3.0 import { compose } from 'redux'; -import { withDialog } from "~/store/dialog/with-dialog"; +import { withDialog } from "store/dialog/with-dialog"; import { reduxForm } from 'redux-form'; -import { PROCESS_MOVE_FORM_NAME } from '~/store/processes/process-move-actions'; -import { MoveToFormDialogData } from '~/store/move-to-dialog/move-to-dialog'; -import { DialogMoveTo } from '~/views-components/dialog-move/dialog-move-to'; -import { moveProcess } from '~/store/workbench/workbench-actions'; +import { PROCESS_MOVE_FORM_NAME } from 'store/processes/process-move-actions'; +import { MoveToFormDialogData } from 'store/move-to-dialog/move-to-dialog'; +import { DialogMoveTo } from 'views-components/dialog-move/dialog-move-to'; +import { moveProcess } from 'store/workbench/workbench-actions'; +import { pickerId } from 'store/tree-picker/picker-id'; export const MoveProcessDialog = compose( withDialog(PROCESS_MOVE_FORM_NAME), @@ -17,5 +18,6 @@ export const MoveProcessDialog = compose( onSubmit: (data, dispatch) => { dispatch(moveProcess(data)); } - }) + }), + pickerId(PROCESS_MOVE_FORM_NAME), )(DialogMoveTo); \ No newline at end of file