diff --git a/src/gql/mocks/taskData.ts b/src/gql/mocks/taskData.ts index b18a1985b8..7610dc3986 100644 --- a/src/gql/mocks/taskData.ts +++ b/src/gql/mocks/taskData.ts @@ -17,6 +17,7 @@ export const taskQuery: TaskQuery = { details: { description: "Long description that requirese use of the inline definition component. This would include details about where the task failed.", + diskDevices: [], oomTracker: { detected: false, }, diff --git a/src/pages/configurePatch/configurePatchCore/index.tsx b/src/pages/configurePatch/configurePatchCore/index.tsx index 57c80bfc78..9ec99201be 100644 --- a/src/pages/configurePatch/configurePatchCore/index.tsx +++ b/src/pages/configurePatch/configurePatchCore/index.tsx @@ -12,9 +12,14 @@ import { MetadataItem, MetadataTitle, } from "components/MetadataCard"; -import { PageContent, PageLayout, PageSider } from "components/styles"; +import { + StyledRouterLink, + PageContent, + PageLayout, + PageSider, +} from "components/styles"; import { StyledTabs } from "components/styles/StyledTabs"; -import { getVersionRoute } from "constants/routes"; +import { getProjectPatchesRoute, getVersionRoute } from "constants/routes"; import { fontSize, size } from "constants/tokens"; import { useToastContext } from "context/toast"; import { @@ -53,6 +58,7 @@ const ConfigurePatchCore: React.FC = ({ patch }) => { id, patchTriggerAliases, project, + projectIdentifier, time, variantsTasks, } = patch; @@ -183,6 +189,12 @@ const ConfigurePatchCore: React.FC = ({ patch }) => { Patch Metadata Submitted by: {author} Submitted at: {time.submittedAt} + + Project:{" "} + + {projectIdentifier} + +