importing by ~
authorPawel Kowalczyk <pawel.kowalczyk@contractors.roche.com>
Tue, 21 Aug 2018 11:45:52 +0000 (13:45 +0200)
committerPawel Kowalczyk <pawel.kowalczyk@contractors.roche.com>
Tue, 21 Aug 2018 11:45:52 +0000 (13:45 +0200)
Feature #13988

Arvados-DCO-1.1-Signed-off-by: Pawel Kowalczyk <pawel.kowalczyk@contractors.roche.com>

src/store/collection-panel/collection-panel-files/collection-panel-files-actions.ts
src/views-components/context-menu/action-sets/collection-resource-action-set.ts
src/views-components/project-copy-dialog/project-copy-dialog.tsx

index a1057b43ce72075eeccad4baebfd7c320a6eaa57..97abfef09f2822c51912097f7643be5a68bc293b 100644 (file)
@@ -13,8 +13,8 @@ import { getNodeValue } from "~/models/tree";
 import { filterCollectionFilesBySelection } from './collection-panel-files-state';
 import { startSubmit, initialize, stopSubmit, reset } from 'redux-form';
 import { getCommonResourceServiceError, CommonResourceServiceError } from "~/common/api/common-resource-service";
-import { resetPickerProjectTree } from '../../project-tree-picker/project-tree-picker-actions';
 import { getDialog } from "~/store/dialog/dialog-reducer";
+import { resetPickerProjectTree } from '~/store/project-tree-picker/project-tree-picker-actions';
 
 export const collectionPanelFilesAction = unionize({
     SET_COLLECTION_FILES: ofType<CollectionFilesTree>(),
index f988ee2b0cc570406d2ab614798980f9a0dbd64d..056ea7b5128b38c8e480cabe87e5aa8d083c5f24 100644 (file)
@@ -9,7 +9,7 @@ import { RenameIcon, ShareIcon, MoveToIcon, CopyIcon, DetailsIcon, RemoveIcon }
 import { openUpdater } from "~/store/collections/updater/collection-updater-action";
 import { favoritePanelActions } from "~/store/favorite-panel/favorite-panel-action";
 import { openProjectCopyDialog } from "~/views-components/project-copy-dialog/project-copy-dialog";
-import { openMoveToDialog } from '../../move-to-dialog/move-to-dialog';
+import { openMoveToDialog } from "~/views-components/move-to-dialog/move-to-dialog";
 
 export const collectionResourceActionSet: ContextMenuActionSet = [[
     {
index 489e4f55aea3ecdd5cbe40a3edeeb90e4a46f504..dedf507d35fb80693304ceffb7ab02d239ae3aa8 100644 (file)
@@ -2,9 +2,9 @@
 //
 // SPDX-License-Identifier: AGPL-3.0
 import { Dispatch, compose } from "redux";
-import { withDialog } from "../../store/dialog/with-dialog";
-import { dialogActions } from "../../store/dialog/dialog-actions";
-import { ProjectCopy, CopyFormData } from "../../components/project-copy/project-copy";
+import { withDialog } from "~/store/dialog/with-dialog";
+import { dialogActions } from "~/store/dialog/dialog-actions";
+import { ProjectCopy, CopyFormData } from "~/components/project-copy/project-copy";
 import { reduxForm, startSubmit, stopSubmit, initialize } from 'redux-form';
 import { resetPickerProjectTree } from "~/store/project-tree-picker/project-tree-picker-actions";