X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/08968efce07d609c16dd8a086bfd0a4d69ad6f3d..f528f6f6ca52c8654b52f84e52339da8e91a9d9c:/src/views/process-log-panel/process-log-panel-root.tsx diff --git a/src/views/process-log-panel/process-log-panel-root.tsx b/src/views/process-log-panel/process-log-panel-root.tsx index 0845a410..38870c40 100644 --- a/src/views/process-log-panel/process-log-panel-root.tsx +++ b/src/views/process-log-panel/process-log-panel-root.tsx @@ -10,14 +10,13 @@ import { ProcessLogFormDataProps, ProcessLogFormActionProps } from '~/views/proc import { DefaultView } from '~/components/default-view/default-view'; import { ProcessIcon } from '~/components/icon/icon'; import { CodeSnippetDataProps } from '~/components/code-snippet/code-snippet'; +import { ProcessLogMainCardActionProps } from './process-log-main-card'; export type ProcessLogPanelRootDataProps = { process?: Process; } & ProcessLogFormDataProps & CodeSnippetDataProps; -export type ProcessLogPanelRootActionProps = { - onContextMenu: (event: React.MouseEvent) => void; -} & ProcessLogFormActionProps; +export type ProcessLogPanelRootActionProps = ProcessLogMainCardActionProps & ProcessLogFormActionProps; export type ProcessLogPanelRootProps = ProcessLogPanelRootDataProps & ProcessLogPanelRootActionProps;