X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/45d9b3d7298daf82bfb93c82e4f2f8c125c45e79..b6ac7fe88d347582d39fffa002e300af222c578f:/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..c4b374b9 100644 --- a/src/views-components/details-panel/process-details.tsx +++ b/src/views-components/details-panel/process-details.tsx @@ -2,44 +2,42 @@ // // 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 { 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 { DetailsAttribute } from "components/details-attribute/details-attribute"; +import { ResourceOwnerWithName } from '../data-explorer/renderers'; 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 */} - + + +
; } }