X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/f093cf66138faec359a95777a91b6a2904469d7d..f60f33a2988545fdeb8b3b07d7cefb82c0d884d3:/services/workbench2/src/views-components/context-menu/context-menu.tsx diff --git a/services/workbench2/src/views-components/context-menu/context-menu.tsx b/services/workbench2/src/views-components/context-menu/context-menu.tsx index 6314ba97ad..a173399b7b 100644 --- a/services/workbench2/src/views-components/context-menu/context-menu.tsx +++ b/services/workbench2/src/views-components/context-menu/context-menu.tsx @@ -10,8 +10,7 @@ import { createAnchorAt } from "components/popover/helpers"; import { ContextMenuActionSet, ContextMenuAction } from "./context-menu-action-set"; import { Dispatch } from "redux"; import { memoize } from "lodash"; -import { sortByProperty } from "common/array-utils"; -import { sortMenuItems, ContextMenuKind } from "./menu-item-sort"; +import { sortMenuItems, ContextMenuKind, menuDirection } from "./menu-item-sort"; type DataProps = Pick & { resource?: ContextMenuResource }; @@ -67,7 +66,7 @@ export const ContextMenu = connect(mapStateToProps, mapDispatchToProps, mergePro const menuActionSets = new Map(); export const addMenuActionSet = (name: ContextMenuKind, itemSet: ContextMenuActionSet) => { - const sorted = itemSet.map(items => sortMenuItems(name, items)); + const sorted = itemSet.map(items => sortMenuItems(name, items, menuDirection.VERTICAL)); menuActionSets.set(name, sorted); };