X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/e0effe9fd43b8d7c0d7fcb9aade9b718cf5dddda..f6093a73debdd7135870582088202da459386f17:/src/views-components/context-menu/action-sets/user-action-set.ts?ds=sidebyside 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 7b0884e6..2582800e 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)); } -}]]; +} */ +]];