[arvados] updated: 2.7.0-6290-gfd7d23d6f9

git repository hosting git at public.arvados.org
Mon May 6 18:21:18 UTC 2024


Summary of changes:
 .../views-components/multiselect-toolbar/ms-workflow-action-set.ts    | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

       via  fd7d23d6f91a5955ad423b14603d2acbbdfd7b11 (commit)
      from  425e812aeb6e5f63d4f574d4dd0ef94a6d8f06c8 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.


commit fd7d23d6f91a5955ad423b14603d2acbbdfd7b11
Author: Lisa Knox <lisaknox83 at gmail.com>
Date:   Mon May 6 14:20:59 2024 -0400

    21535: changed delete method to handle multiple workflows Arvados-DCO-1.1-Signed-off-by: Lisa Knox <lisa.knox at curii.com>

diff --git a/services/workbench2/src/views-components/multiselect-toolbar/ms-workflow-action-set.ts b/services/workbench2/src/views-components/multiselect-toolbar/ms-workflow-action-set.ts
index fcc362bfec..dc8075a0f4 100644
--- a/services/workbench2/src/views-components/multiselect-toolbar/ms-workflow-action-set.ts
+++ b/services/workbench2/src/views-components/multiselect-toolbar/ms-workflow-action-set.ts
@@ -26,7 +26,9 @@ const msDeleteWorkflow: MultiSelectMenuAction = {
     hasAlts: false,
     isForMulti: true,
     execute: (dispatch, resources) => {
-        dispatch<any>(deleteWorkflow(resources[0].uuid, resources[0].ownerUuid));
+        for (const resource of [...resources]){
+            dispatch<any>(deleteWorkflow(resource.uuid, resource.ownerUuid));
+        }
     },
 };
 

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


hooks/post-receive
-- 




More information about the arvados-commits mailing list