X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/25216cc7acedc987c26a159f0b640210c0ef101e..0f433d72c1af64a6359478da2edb8c9f589d579b:/src/views-components/details-panel/process-details.tsx diff --git a/src/views-components/details-panel/process-details.tsx b/src/views-components/details-panel/process-details.tsx index ea3c430a..d9c991f5 100644 --- a/src/views-components/details-panel/process-details.tsx +++ b/src/views-components/details-panel/process-details.tsx @@ -2,15 +2,11 @@ // // SPDX-License-Identifier: AGPL-3.0 -import * as React from 'react'; +import React from 'react'; import { ProcessIcon } from 'components/icon/icon'; import { ProcessResource } from 'models/process'; -import { formatDate } from 'common/formatters'; -import { ResourceKind } from 'models/resource'; -import { resourceLabel } from 'common/labels'; import { DetailsData } from "./details-data"; -import { DetailsAttribute } from "components/details-attribute/details-attribute"; -import { ResourceOwnerWithName } from '../data-explorer/renderers'; +import { ProcessDetailsAttributes } from 'views/process-panel/process-details-attributes'; export class ProcessDetails extends DetailsData { @@ -19,25 +15,6 @@ export class ProcessDetails extends DetailsData { } getDetails() { - return
- - } /> - - - - - - - - - - - - - - - -
; + return ; } }