X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/1feb5aaffe6fee4a9c8c8c64877f1da6f3490e06..d892b953431e67c2c8df25c4387f2111b88b820f:/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 e195d05f..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 ; } }