[arvados] created: 2.7.0-5937-ga11b5dcc04

git repository hosting git at public.arvados.org
Fri Feb 2 16:39:11 UTC 2024


        at  a11b5dcc047426ea20e785496dbb8d1c5e2fe98e (commit)


commit a11b5dcc047426ea20e785496dbb8d1c5e2fe98e
Author: Lisa Knox <lisaknox83 at gmail.com>
Date:   Fri Feb 2 11:38:33 2024 -0500

    21359: corrected owneruuid passed to creatproject function Arvados-DCO-1.1-Signed-off-by: Lisa Knox <lisa.knox at curii.com>

diff --git a/services/workbench2/src/views-components/context-menu/action-sets/project-action-set.ts b/services/workbench2/src/views-components/context-menu/action-sets/project-action-set.ts
index 2706315179..c722e61076 100644
--- a/services/workbench2/src/views-components/context-menu/action-sets/project-action-set.ts
+++ b/services/workbench2/src/views-components/context-menu/action-sets/project-action-set.ts
@@ -118,8 +118,8 @@ export const freezeProjectAction = {
 export const newProjectAction: any = {
     icon: NewProjectIcon,
     name: "New project",
-    execute: (dispatch, resource): void => {
-        dispatch(openProjectCreateDialog(resource.uuid));
+    execute: (dispatch, resources): void => {
+        dispatch(openProjectCreateDialog(resources[0].uuid));
     },
 };
 

-----------------------------------------------------------------------


hooks/post-receive
-- 




More information about the arvados-commits mailing list