X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/c03c97bee25886e2879e69b6d065ac4d1674c48d..b3ffad71aa43fcb8db2d2c7a20ee0ef588e37e04:/src/index.tsx diff --git a/src/index.tsx b/src/index.tsx index efe3a576df..88fd2298bb 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -48,6 +48,8 @@ import { getBuildInfo } from '~/common/app-info'; import { DragDropContextProvider } from 'react-dnd'; import HTML5Backend from 'react-dnd-html5-backend'; import { initAdvanceFormProjectsTree } from '~/store/search-bar/search-bar-actions'; +import { repositoryActionSet } from '~/views-components/context-menu/action-sets/repository-action-set'; +import { sshKeyActionSet } from '~/views-components/context-menu/action-sets/ssh-key-action-set'; console.log(`Starting arvados [${getBuildInfo()}]`); @@ -64,6 +66,8 @@ addMenuActionSet(ContextMenuKind.TRASHED_COLLECTION, trashedCollectionActionSet) addMenuActionSet(ContextMenuKind.PROCESS, processActionSet); addMenuActionSet(ContextMenuKind.PROCESS_RESOURCE, processResourceActionSet); addMenuActionSet(ContextMenuKind.TRASH, trashActionSet); +addMenuActionSet(ContextMenuKind.REPOSITORY, repositoryActionSet); +addMenuActionSet(ContextMenuKind.SSH_KEY, sshKeyActionSet); fetchConfig() .then(({ config, apiHost }) => {