X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/7d5095d5324b5d5ee91254f1cfa83f0ef88806cc..d4b18e45f319eb0885442ab1b64a01683630e38b:/src/index.tsx diff --git a/src/index.tsx b/src/index.tsx index f64e076a89..508fa7c3da 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -58,6 +58,7 @@ import { computeNodeActionSet } from '~/views-components/context-menu/action-set import { apiClientAuthorizationActionSet } from '~/views-components/context-menu/action-sets/api-client-authorization-action-set'; import { groupActionSet } from '~/views-components/context-menu/action-sets/group-action-set'; import { groupMemberActionSet } from '~/views-components/context-menu/action-sets/group-member-action-set'; +import { linkActionSet } from '~/views-components/context-menu/action-sets/link-action-set'; console.log(`Starting arvados [${getBuildInfo()}]`); @@ -79,6 +80,7 @@ addMenuActionSet(ContextMenuKind.SSH_KEY, sshKeyActionSet); addMenuActionSet(ContextMenuKind.VIRTUAL_MACHINE, virtualMachineActionSet); addMenuActionSet(ContextMenuKind.KEEP_SERVICE, keepServiceActionSet); addMenuActionSet(ContextMenuKind.USER, userActionSet); +addMenuActionSet(ContextMenuKind.LINK, linkActionSet); addMenuActionSet(ContextMenuKind.NODE, computeNodeActionSet); addMenuActionSet(ContextMenuKind.API_CLIENT_AUTHORIZATION, apiClientAuthorizationActionSet); addMenuActionSet(ContextMenuKind.GROUPS, groupActionSet);