[arvados-workbench2] updated: 2.7.0-140-gad73e816

git repository hosting git at public.arvados.org
Wed Oct 11 13:37:48 UTC 2023


Summary of changes:
 src/store/context-menu/context-menu-actions.ts | 1 -
 src/store/processes/processes-actions.ts       | 2 +-
 src/store/store.ts                             | 1 -
 3 files changed, 1 insertion(+), 3 deletions(-)

       via  ad73e81695d3501253f64acd5a63e83deb45c279 (commit)
      from  4417a36247e40e7b2204b19324922940395c5361 (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 ad73e81695d3501253f64acd5a63e83deb45c279
Author: Lisa Knox <lisaknox83 at gmail.com>
Date:   Wed Oct 11 09:37:42 2023 -0400

    15768: removed vestigial imports Arvados-DCO-1.1-Signed-off-by: Lisa Knox <lisa.knox at curii.com>

diff --git a/src/store/context-menu/context-menu-actions.ts b/src/store/context-menu/context-menu-actions.ts
index bd93649e..71da498f 100644
--- a/src/store/context-menu/context-menu-actions.ts
+++ b/src/store/context-menu/context-menu-actions.ts
@@ -23,7 +23,6 @@ import { GroupContentsResource } from "services/groups-service/groups-service";
 import { LinkResource } from "models/link";
 import { resourceIsFrozen } from "common/frozen-resources";
 import { ProjectResource } from "models/project";
-import { filterCollectionFilesBySelection } from "store/collection-panel/collection-panel-files/collection-panel-files-state";
 
 export const contextMenuActions = unionize({
     OPEN_CONTEXT_MENU: ofType<{ position: ContextMenuPosition; resource: ContextMenuResource }>(),
diff --git a/src/store/processes/processes-actions.ts b/src/store/processes/processes-actions.ts
index 1cf5f49a..1b9d725e 100644
--- a/src/store/processes/processes-actions.ts
+++ b/src/store/processes/processes-actions.ts
@@ -328,7 +328,7 @@ export const removeProcessPermanently = (uuid: string) => async (dispatch: Dispa
     for (const process of processesToRemove) {
         try {
             dispatch(snackbarActions.OPEN_SNACKBAR({ message: "Removing ...", kind: SnackbarKind.INFO }));
-            await services.containerRequestService.delete(uuid, false);
+            await services.containerRequestService.delete(process.uuid, false);
             dispatch(projectPanelActions.REQUEST_ITEMS());
             dispatch(snackbarActions.OPEN_SNACKBAR({ message: "Removed.", hideDuration: 2000, kind: SnackbarKind.SUCCESS }));
         } catch (e) {
diff --git a/src/store/store.ts b/src/store/store.ts
index ac56d407..daa9812e 100644
--- a/src/store/store.ts
+++ b/src/store/store.ts
@@ -79,7 +79,6 @@ import { sidePanelReducer } from "./side-panel/side-panel-reducer";
 import { bannerReducer } from "./banner/banner-reducer";
 import { multiselectReducer } from "./multiselect/multiselect-reducer";
 import { composeWithDevTools } from "redux-devtools-extension";
-const composeEnhancers = (process.env.NODE_ENV === "development" && window && window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__) || compose;
 
 declare global {
     interface Window {

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


hooks/post-receive
-- 




More information about the arvados-commits mailing list