1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
5 import { openKeepServiceAttributesDialog, openKeepServiceRemoveDialog } from 'store/keep-services/keep-services-actions';
6 import { openAdvancedTabDialog } from 'store/advanced-tab/advanced-tab';
7 import { ContextMenuActionSet } from "views-components/context-menu/context-menu-action-set";
8 import { AdvancedIcon, RemoveIcon, AttributesIcon } from "components/icon/icon";
10 export const keepServiceActionSet: ContextMenuActionSet = [[{
13 execute: (dispatch, { uuid }) => {
14 dispatch<any>(openKeepServiceAttributesDialog(uuid));
19 execute: (dispatch, { uuid }) => {
20 dispatch<any>(openAdvancedTabDialog(uuid));
25 execute: (dispatch, { uuid }) => {
26 dispatch<any>(openKeepServiceRemoveDialog(uuid));