X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/8dc7e5fc6f2d2a7ce853f935a0a84dacb8c0585f..4b961d16b8f8ef8afbd13697a79fe4684acd0416:/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 fe8a5b18..38870c40 100644 --- a/src/views/process-log-panel/process-log-panel-root.tsx +++ b/src/views/process-log-panel/process-log-panel-root.tsx @@ -9,14 +9,14 @@ import { ProcessLogMainCard } from '~/views/process-log-panel/process-log-main-c import { ProcessLogFormDataProps, ProcessLogFormActionProps } from '~/views/process-log-panel/process-log-form'; 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; +} & ProcessLogFormDataProps & CodeSnippetDataProps; -export type ProcessLogPanelRootActionProps = { - onContextMenu: (event: React.MouseEvent) => void; -} & ProcessLogFormActionProps; +export type ProcessLogPanelRootActionProps = ProcessLogMainCardActionProps & ProcessLogFormActionProps; export type ProcessLogPanelRootProps = ProcessLogPanelRootDataProps & ProcessLogPanelRootActionProps;