Merge branch '15557-rerun-workflow' into main. Closes #15557
[arvados-workbench2.git] / src / views-components / data-explorer / data-explorer.tsx
index 79f530a062979ec64ee02c609afa5202a974cbaf..48046987ea3379210cb5a037bdf7488029d5b06f 100644 (file)
@@ -22,22 +22,18 @@ interface Props {
 }
 
 const mapStateToProps = (state: RootState, { id }: Props) => {
-    // console.log('DATA_EXPLORER, MSTP GLOBAL STATE:', state)
-    const test = 'foo'
     const progress = state.progressIndicator.find(p => p.id === id);
     const dataExplorerState = getDataExplorer(state.dataExplorer, id);
     const currentRoute = state.router.location ? state.router.location.pathname : '';
     const currentRefresh = localStorage.getItem(LAST_REFRESH_TIMESTAMP) || '';
     const currentItemUuid = currentRoute === '/workflows' ? state.properties.workflowPanelDetailsUuid : state.detailsPanel.resourceUuid;
-// console.log('DATA_EXPLORER, MSTP FILTERED:', {...dataExplorerState})
     return {
-        foo: test,
         ...dataExplorerState,
         working: !!progress?.working,
         currentRefresh: currentRefresh,
         currentRoute: currentRoute,
         paperKey: currentRoute,
-        currentItemUuid
+        currentItemUuid,
     };
 };