1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
5 import { ContextMenuActionSet } from "../context-menu-action-set";
6 import actions from "../../../store/project/project-action";
7 import { IconTypes } from "../../../components/icon/icon";
9 export const rootProjectActionSet: ContextMenuActionSet = [[{
10 icon: IconTypes.FOLDER,
12 execute: (dispatch, resource) => {
13 dispatch(actions.OPEN_PROJECT_CREATOR({ ownerUuid: resource.uuid }));