X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/4b8cc1acf54add3e4337b27a7e957a84dc9c07b4..1f9a8ec32f818d8e78d683ad5569b9e4ae0f693a:/src/store/workbench/workbench-actions.ts diff --git a/src/store/workbench/workbench-actions.ts b/src/store/workbench/workbench-actions.ts index 400264c319..aaf8f2665f 100644 --- a/src/store/workbench/workbench-actions.ts +++ b/src/store/workbench/workbench-actions.ts @@ -134,7 +134,7 @@ export const loadProject = (uuid: string) => }, SHARED: project => { dispatch(setSharedWithMeBreadcrumbs(uuid)); - dispatch(activateSidePanelTreeItem(SidePanelTreeCategory.SHARED_WITH_ME)); + dispatch(activateSidePanelTreeItem(uuid)); dispatch(finishLoadingProject(project)); }, TRASHED: project => { @@ -214,7 +214,7 @@ export const loadCollection = (uuid: string) => dispatch(collectionPanelActions.SET_COLLECTION(collection as CollectionResource)); dispatch(updateResources([collection])); dispatch(setSharedWithMeBreadcrumbs(collection.ownerUuid)); - dispatch(activateSidePanelTreeItem(SidePanelTreeCategory.SHARED_WITH_ME)); + dispatch(activateSidePanelTreeItem(collection.ownerUuid)); dispatch(loadCollectionFiles(collection.uuid)); }, TRASHED: collection => {