18128: Removes WIP logs panel & hides details panel on process view.
authorLucas Di Pentima <lucas.dipentima@curii.com>
Wed, 20 Oct 2021 17:05:02 +0000 (14:05 -0300)
committerLucas Di Pentima <lucas.dipentima@curii.com>
Thu, 2 Dec 2021 23:01:56 +0000 (20:01 -0300)
Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima <lucas.dipentima@curii.com>

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>