Update icons in context menu
[arvados.git] / src / views-components / context-menu / action-sets / root-project-action-set.ts
index 53642d03fbab75425fb360363feea3eaab5e8397..afb428a31be59d7ace4b8ad2ec8c6ac2f0a66a6a 100644 (file)
@@ -4,10 +4,10 @@
 
 import { ContextMenuActionSet } from "../context-menu-action-set";
 import actions from "../../../store/project/project-action";
-import { IconTypes } from "../../../components/icon/icon";
+import { NewProjectIcon } from "../../../components/icon/icon";
 
 export const rootProjectActionSet: ContextMenuActionSet =  [[{
-    icon: IconTypes.FOLDER,
+    icon: NewProjectIcon,
     name: "New project",
     execute: (dispatch, resource) => {
         dispatch(actions.OPEN_PROJECT_CREATOR({ ownerUuid: resource.uuid }));