17266: Fixes integration test.
[arvados-workbench2.git] / src / store / collections / collection-update-actions.ts
index 2faaa215b4ab6e1c694697bef7b5b02e9c6bf845..c753aeb6088defb93834fc0d74a519dfcccc3d0f 100644 (file)
@@ -13,7 +13,6 @@ import { CollectionResource } from '~/models/collection';
 import { progressIndicatorActions } from "~/store/progress-indicator/progress-indicator-actions";
 import { snackbarActions, SnackbarKind } from "../snackbar/snackbar-actions";
 import { updateResources } from "../resources/resources-actions";
-import { reloadProjectMatchingUuid } from "../workbench/workbench-actions";
 import { loadDetailsPanel } from "../details-panel/details-panel-action";
 
 export interface CollectionUpdateFormDialogData {
@@ -49,7 +48,6 @@ export const updateCollection = (collection: CollectionUpdateFormDialogData) =>
                 kind: SnackbarKind.SUCCESS
             }));
             dispatch<any>(updateResources([updatedCollection]));
-            dispatch<any>(reloadProjectMatchingUuid([updatedCollection.ownerUuid]));
             dispatch<any>(loadDetailsPanel(updatedCollection.uuid));
         }).catch (e => {
             dispatch(progressIndicatorActions.STOP_WORKING(COLLECTION_UPDATE_FORM_NAME));