X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/0c46a74e6c0397fa153c345857977f8654ec4471..6149700b801fc2cdb83b0e700bbb319850ed471d:/src/index.tsx diff --git a/src/index.tsx b/src/index.tsx index ad771629..d3115a67 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -27,8 +27,9 @@ import { collectionFilesActionSet } from './views-components/context-menu/action 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 { processActionSet } from './views-components/context-menu/action-sets/process-action-set'; import { addRouteChangeHandlers } from './routes/routes'; -import { loadWorkbench } from './store/navigation/navigation-action'; +import { loadWorkbench } from './store/workbench/workbench-actions'; import { Routes } from '~/routes/routes'; const getBuildNumber = () => "BN-" + (process.env.REACT_APP_BUILD_NUMBER || "dev"); @@ -47,6 +48,7 @@ addMenuActionSet(ContextMenuKind.COLLECTION_FILES, collectionFilesActionSet); addMenuActionSet(ContextMenuKind.COLLECTION_FILES_ITEM, collectionFilesItemActionSet); addMenuActionSet(ContextMenuKind.COLLECTION, collectionActionSet); addMenuActionSet(ContextMenuKind.COLLECTION_RESOURCE, collectionResourceActionSet); +addMenuActionSet(ContextMenuKind.PROCESS, processActionSet); fetchConfig() .then((config) => {