From: Michal Klobukowski Date: Fri, 16 Nov 2018 10:54:52 +0000 (+0100) Subject: Make initProjectsTreePicker imports absolute X-Git-Tag: 1.3.0~23^2^2^2^2 X-Git-Url: https://git.arvados.org/arvados-workbench2.git/commitdiff_plain/9e1596de7ac6ed8286b17c5e3d2b39bc0c03fa8f Make initProjectsTreePicker imports absolute Feature #14470 Arvados-DCO-1.1-Signed-off-by: Michal Klobukowski --- diff --git a/src/store/collections/collection-move-actions.ts b/src/store/collections/collection-move-actions.ts index 8be62509..770eed1a 100644 --- a/src/store/collections/collection-move-actions.ts +++ b/src/store/collections/collection-move-actions.ts @@ -13,7 +13,7 @@ import { projectPanelActions } from '~/store/project-panel/project-panel-action' import { MoveToFormDialogData } from '~/store/move-to-dialog/move-to-dialog'; import { resetPickerProjectTree } from '~/store/project-tree-picker/project-tree-picker-actions'; import { progressIndicatorActions } from "~/store/progress-indicator/progress-indicator-actions"; -import { initProjectsTreePicker } from '../tree-picker/tree-picker-actions'; +import { initProjectsTreePicker } from '~/store/tree-picker/tree-picker-actions'; export const COLLECTION_MOVE_FORM_NAME = 'collectionMoveFormName'; diff --git a/src/store/collections/collection-partial-copy-actions.ts b/src/store/collections/collection-partial-copy-actions.ts index 0f904c2a..b9ada5ee 100644 --- a/src/store/collections/collection-partial-copy-actions.ts +++ b/src/store/collections/collection-partial-copy-actions.ts @@ -12,7 +12,7 @@ import { filterCollectionFilesBySelection } from '../collection-panel/collection import { snackbarActions, SnackbarKind } from '~/store/snackbar/snackbar-actions'; import { getCommonResourceServiceError, CommonResourceServiceError } from '~/services/common-service/common-resource-service'; import { progressIndicatorActions } from "~/store/progress-indicator/progress-indicator-actions"; -import { initProjectsTreePicker } from '../tree-picker/tree-picker-actions'; +import { initProjectsTreePicker } from '~/store/tree-picker/tree-picker-actions'; export const COLLECTION_PARTIAL_COPY_FORM_NAME = 'COLLECTION_PARTIAL_COPY_DIALOG'; diff --git a/src/store/projects/project-move-actions.ts b/src/store/projects/project-move-actions.ts index 9405597b..cacd49e6 100644 --- a/src/store/projects/project-move-actions.ts +++ b/src/store/projects/project-move-actions.ts @@ -10,7 +10,7 @@ import { RootState } from '~/store/store'; import { getCommonResourceServiceError, CommonResourceServiceError } from "~/services/common-service/common-resource-service"; import { MoveToFormDialogData } from '~/store/move-to-dialog/move-to-dialog'; import { resetPickerProjectTree } from '~/store/project-tree-picker/project-tree-picker-actions'; -import { initProjectsTreePicker } from '../tree-picker/tree-picker-actions'; +import { initProjectsTreePicker } from '~/store/tree-picker/tree-picker-actions'; export const PROJECT_MOVE_FORM_NAME = 'projectMoveFormName';