X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/08968efce07d609c16dd8a086bfd0a4d69ad6f3d..1ef4bffbfa4d05ae4356ef22b3964d6152310fb9:/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..be043722 100644 --- a/src/views/process-log-panel/process-log-panel-root.tsx +++ b/src/views/process-log-panel/process-log-panel-root.tsx @@ -2,22 +2,21 @@ // // SPDX-License-Identifier: AGPL-3.0 -import * as React from 'react'; +import React from 'react'; import { Grid } from '@material-ui/core'; -import { Process } from '~/store/processes/process'; -import { ProcessLogMainCard } from '~/views/process-log-panel/process-log-main-card'; -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 { Process } from 'store/processes/process'; +import { ProcessLogMainCard } from 'views/process-log-panel/process-log-main-card'; +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 & CodeSnippetDataProps; -export type ProcessLogPanelRootActionProps = { - onContextMenu: (event: React.MouseEvent) => void; -} & ProcessLogFormActionProps; +export type ProcessLogPanelRootActionProps = ProcessLogMainCardActionProps & ProcessLogFormActionProps; export type ProcessLogPanelRootProps = ProcessLogPanelRootDataProps & ProcessLogPanelRootActionProps;