X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/eb4491eea9ba873845f7a5796d139d19977f8112..2c2bd28224c2480276ae714c54ab1be0a6896efd:/src/views-components/create-collection-dialog-with-selected/create-collection-dialog-with-selected.tsx diff --git a/src/views-components/create-collection-dialog-with-selected/create-collection-dialog-with-selected.tsx b/src/views-components/create-collection-dialog-with-selected/create-collection-dialog-with-selected.tsx index 46bc724d77..fb5f094b68 100644 --- a/src/views-components/create-collection-dialog-with-selected/create-collection-dialog-with-selected.tsx +++ b/src/views-components/create-collection-dialog-with-selected/create-collection-dialog-with-selected.tsx @@ -7,14 +7,14 @@ import { reduxForm, reset, startSubmit, stopSubmit } from "redux-form"; import { withDialog } from "~/store/dialog/with-dialog"; import { dialogActions } from "~/store/dialog/dialog-actions"; import { DialogCollectionCreateWithSelected } from "../dialog-create/dialog-collection-create-selected"; -import { loadProjectTreePickerProjects } from "../project-tree-picker/project-tree-picker"; +import { resetPickerProjectTree } from "~/store/project-tree-picker/project-tree-picker-actions"; export const DIALOG_COLLECTION_CREATE_WITH_SELECTED = 'dialogCollectionCreateWithSelected'; export const createCollectionWithSelected = () => (dispatch: Dispatch) => { dispatch(reset(DIALOG_COLLECTION_CREATE_WITH_SELECTED)); - dispatch(loadProjectTreePickerProjects('')); + dispatch(resetPickerProjectTree()); dispatch(dialogActions.OPEN_DIALOG({ id: DIALOG_COLLECTION_CREATE_WITH_SELECTED, data: {} })); };