UI Improvements
[arvados-workbench2.git] / src / views-components / context-menu / action-sets / project-action-set.ts
index 8c81e3bd1996633ff39eca407e3547a6de0f3cf3..660d7ea03f05f277cecb4f3824a53d4741d3a467 100644 (file)
@@ -47,12 +47,6 @@ export const projectActionSet: ContextMenuActionSet = [[
             });
         }
     },
-    {
-        component: ToggleTrashAction,
-        execute: (dispatch, resource) => {
-            dispatch<any>(toggleProjectTrashed(resource.uuid, resource.ownerUuid, resource.isTrashed!!));
-        }
-    },
     {
         icon: MoveToIcon,
         name: "Move to",
@@ -81,4 +75,10 @@ export const projectActionSet: ContextMenuActionSet = [[
             dispatch<any>(openAdvancedTabDialog(resource.uuid));
         }
     },
+    {
+        component: ToggleTrashAction,
+        execute: (dispatch, resource) => {
+            dispatch<any>(toggleProjectTrashed(resource.uuid, resource.ownerUuid, resource.isTrashed!!));
+        }
+    },
 ]];