X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/d940d88f991c14785110855ba0ee79ea5f401276..0b74cbfdc8d1cb7d9223bd64ddac390dcdae3cc2:/services/workbench2/src/index.tsx diff --git a/services/workbench2/src/index.tsx b/services/workbench2/src/index.tsx index ef9ff9c986..c024f9396f 100644 --- a/services/workbench2/src/index.tsx +++ b/services/workbench2/src/index.tsx @@ -76,6 +76,7 @@ import { keepServiceActionSet } from "views-components/context-menu/action-sets/ import { loadVocabulary } from "store/vocabulary/vocabulary-actions"; import { virtualMachineActionSet } from "views-components/context-menu/action-sets/virtual-machine-action-set"; import { userActionSet } from "views-components/context-menu/action-sets/user-action-set"; +import { UserDetailsActionSet } from "views-components/context-menu/action-sets/user-details-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"; @@ -124,6 +125,7 @@ addMenuActionSet(ContextMenuKind.SSH_KEY, sshKeyActionSet); addMenuActionSet(ContextMenuKind.VIRTUAL_MACHINE, virtualMachineActionSet); addMenuActionSet(ContextMenuKind.KEEP_SERVICE, keepServiceActionSet); addMenuActionSet(ContextMenuKind.USER, userActionSet); +addMenuActionSet(ContextMenuKind.USER_DETAILS, UserDetailsActionSet); addMenuActionSet(ContextMenuKind.LINK, linkActionSet); addMenuActionSet(ContextMenuKind.API_CLIENT_AUTHORIZATION, apiClientAuthorizationActionSet); addMenuActionSet(ContextMenuKind.GROUPS, groupActionSet);