X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/e0effe9fd43b8d7c0d7fcb9aade9b718cf5dddda..df5bb74b46652b2e0a73a0e9ef2c09a63314e409:/src/views-components/context-menu/action-sets/user-action-set.ts diff --git a/src/views-components/context-menu/action-sets/user-action-set.ts b/src/views-components/context-menu/action-sets/user-action-set.ts index 7b0884e668..2582800e5b 100644 --- a/src/views-components/context-menu/action-sets/user-action-set.ts +++ b/src/views-components/context-menu/action-sets/user-action-set.ts @@ -3,7 +3,7 @@ // SPDX-License-Identifier: AGPL-3.0 import { ContextMenuActionSet } from "~/views-components/context-menu/context-menu-action-set"; -import { AdvancedIcon, ProjectIcon, AttributesIcon, UserPanelIcon } from "~/components/icon/icon"; +import { AdvancedIcon, ProjectIcon, AttributesIcon } from "~/components/icon/icon"; import { openAdvancedTabDialog } from '~/store/advanced-tab/advanced-tab'; import { openUserAttributes, openUserProjects } from "~/store/users/users-actions"; @@ -25,11 +25,13 @@ export const userActionSet: ContextMenuActionSet = [[{ execute: (dispatch, { uuid }) => { dispatch(openAdvancedTabDialog(uuid)); } -}, -{ +}, /* + // Neither of the buttons on this dialog work correctly (bugs #16114 and #16124) so hide it for now. + { name: "Manage", icon: UserPanelIcon, execute: (dispatch, { uuid }) => { - dispatch(openAdvancedTabDialog(uuid)); + dispatch(openUserManagement(uuid)); } -}]]; +} */ +]];