X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/5a7f3f56fc39ab231982435d29b8f15e819748fe..f2b031de2183439f8aade2f290cd0e3f95f6438c:/src/index.tsx diff --git a/src/index.tsx b/src/index.tsx index 49cb06460d..faaf6b81ec 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -26,6 +26,8 @@ import { favoriteActionSet } from "./views-components/context-menu/action-sets/f import { collectionFilesActionSet } from './views-components/context-menu/action-sets/collection-files-action-set'; import { collectionFilesItemActionSet } from './views-components/context-menu/action-sets/collection-files-item-action-set'; import { collectionActionSet } from './views-components/context-menu/action-sets/collection-action-set'; +import { collectionResourceActionSet } from './views-components/context-menu/action-sets/collection-resource-action-set'; +import { initPickerProjectTree } from './views-components/project-tree-picker/project-tree-picker'; addMenuActionSet(ContextMenuKind.ROOT_PROJECT, rootProjectActionSet); addMenuActionSet(ContextMenuKind.PROJECT, projectActionSet); @@ -34,6 +36,7 @@ addMenuActionSet(ContextMenuKind.FAVORITE, favoriteActionSet); addMenuActionSet(ContextMenuKind.COLLECTION_FILES, collectionFilesActionSet); addMenuActionSet(ContextMenuKind.COLLECTION_FILES_ITEM, collectionFilesItemActionSet); addMenuActionSet(ContextMenuKind.COLLECTION, collectionActionSet); +addMenuActionSet(ContextMenuKind.COLLECTION_RESOURCE, collectionResourceActionSet); fetchConfig() .then(config => { @@ -43,7 +46,8 @@ fetchConfig() store.dispatch(initAuth()); store.dispatch(getProjectList(services.authService.getUuid())); - console.log(services.webdavClient); + store.dispatch(initPickerProjectTree()); + const TokenComponent = (props: any) => ; const WorkbenchComponent = (props: any) => ;