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 && (