From 4b7e3620cab833ef607fc82a0170f4bda0a02628 Mon Sep 17 00:00:00 2001 From: Marliana Lara Date: Wed, 9 Mar 2022 10:25:21 -0500 Subject: [PATCH] Add deleted details to job detail view --- awx/ui/src/screens/Job/JobDetail/JobDetail.js | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/awx/ui/src/screens/Job/JobDetail/JobDetail.js b/awx/ui/src/screens/Job/JobDetail/JobDetail.js index 1c9d7cac90..76e8329bf4 100644 --- a/awx/ui/src/screens/Job/JobDetail/JobDetail.js +++ b/awx/ui/src/screens/Job/JobDetail/JobDetail.js @@ -9,6 +9,7 @@ import styled from 'styled-components'; import { useConfig } from 'contexts/Config'; import AlertModal from 'components/AlertModal'; import { + DeletedDetail, DetailList, Detail, UserDateDetail, @@ -158,7 +159,7 @@ function JobDetail({ job, inventorySourceLabels }) { value={jobTypes[job.type]} /> - {inventory && ( + {inventory ? ( } /> + ) : ( + )} {inventory_source && ( <> @@ -215,7 +218,7 @@ function JobDetail({ job, inventorySourceLabels }) { } /> )} - {project && ( + {project ? ( <> + ) : ( + )} {scmBranch && (