18128: Removes WIP logs panel & hides details panel on process view.
[arvados-workbench2.git] / src / views / process-panel / process-panel-root.tsx
index f30ebf70536ddcc1f7ce14b89af6442cc8df9147..6879d9979682c9c5768a8387979a426549e20137 100644 (file)
@@ -42,8 +42,7 @@ export type ProcessPanelRootProps = ProcessPanelRootDataProps & ProcessPanelRoot
 
 const panelsData: MPVPanelState[] = [
     {name: "Info"},
-    {name: "Details"},
-    {name: "Logs", visible: false},
+    {name: "Details", visible: false},
     {name: "Subprocesses"},
 ];
 
@@ -63,9 +62,6 @@ export const ProcessPanelRoot = withStyles(styles)(({ process, ...props }: Proce
             <MPVPanelContent xs="auto">
                 <ProcessDetailsCard process={process} />
             </MPVPanelContent>
-            <MPVPanelContent xs="auto">
-                <ProcessLogPanel />
-            </MPVPanelContent>
             <MPVPanelContent xs>
                 <SubprocessPanel />
             </MPVPanelContent>