X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/1feb5aaffe6fee4a9c8c8c64877f1da6f3490e06..09d4c8fd20d63b93cf4d14acf3de500e26a73b9b:/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 e195d05f34..bb0e8a4043 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 ; } }