From a5e931aafba85d90e98a82372f3c06ad107dbe46 Mon Sep 17 00:00:00 2001 From: Lucas Di Pentima Date: Fri, 8 Oct 2021 16:05:05 -0300 Subject: [PATCH] 18128: Applies MPVContainer component to the process panel. Both panel are now able to be toggled via the top level button tray. Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima --- src/views/process-panel/process-panel-root.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/views/process-panel/process-panel-root.tsx b/src/views/process-panel/process-panel-root.tsx index e7f66573..242349b5 100644 --- a/src/views/process-panel/process-panel-root.tsx +++ b/src/views/process-panel/process-panel-root.tsx @@ -10,6 +10,7 @@ import { ProcessIcon } from 'components/icon/icon'; import { Process } from 'store/processes/process'; import { SubprocessPanel } from 'views/subprocess-panel/subprocess-panel'; import { SubprocessFilterDataProps } from 'components/subprocess-filter/subprocess-filter'; +import { MPVContainer } from 'components/multi-panel-view/multi-panel-view'; export interface ProcessPanelRootDataProps { process?: Process; @@ -30,7 +31,7 @@ export type ProcessPanelRootProps = ProcessPanelRootDataProps & ProcessPanelRoot export const ProcessPanelRoot = ({ process, ...props }: ProcessPanelRootProps) => process - ? + ? - + :