X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/90df34ba0e84b5735c48382362284b5f0382dd0e..7c6d47d766b7b37463281387d8badbfe18522d09:/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 cec01b96..bb0e8a40 100644 --- a/src/views-components/details-panel/process-details.tsx +++ b/src/views-components/details-panel/process-details.tsx @@ -2,44 +2,19 @@ // // SPDX-License-Identifier: AGPL-3.0 -import * as 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 React from 'react'; +import { ProcessIcon } from 'components/icon/icon'; +import { ProcessResource } from 'models/process'; import { DetailsData } from "./details-data"; -import { DetailsAttribute } from "~/components/details-attribute/details-attribute"; +import { ProcessDetailsAttributes } from 'views/process-panel/process-details-attributes'; export class ProcessDetails extends DetailsData { - getIcon(className?: string){ + getIcon(className?: string) { return ; } getDetails() { - return
- - - - - {/* Missing attr */} - - - - {/* Missing attrs */} - - - - {/* Links but we dont have view */} - - - - - - - {/* Link but we dont have view */} - -
; + return ; } }