Fix lack of icon styling applied to context menu item
[arvados-workbench2.git] / src / views-components / context-menu / action-sets / root-project-action-set.ts
index afb428a31be59d7ace4b8ad2ec8c6ac2f0a66a6a..139bd26f90195e549a78ab0df12e6f72a89eb89a 100644 (file)
@@ -3,13 +3,13 @@
 // SPDX-License-Identifier: AGPL-3.0
 
 import { ContextMenuActionSet } from "../context-menu-action-set";
-import actions from "../../../store/project/project-action";
+import { projectActions } from "../../../store/project/project-action";
 import { NewProjectIcon } from "../../../components/icon/icon";
 
 export const rootProjectActionSet: ContextMenuActionSet =  [[{
     icon: NewProjectIcon,
     name: "New project",
     execute: (dispatch, resource) => {
-        dispatch(actions.OPEN_PROJECT_CREATOR({ ownerUuid: resource.uuid }));
+        dispatch(projectActions.OPEN_PROJECT_CREATOR({ ownerUuid: resource.uuid }));
     }
-}]];
\ No newline at end of file
+}]];