diff --git a/awx/ui/src/screens/Job/JobDetail/JobDetail.js b/awx/ui/src/screens/Job/JobDetail/JobDetail.js
index 89b14cd0d56c..bcc13f0d08ad 100644
--- a/awx/ui/src/screens/Job/JobDetail/JobDetail.js
+++ b/awx/ui/src/screens/Job/JobDetail/JobDetail.js
@@ -75,6 +75,14 @@ function JobDetail({ job, inventorySourceLabels }) {
workflow_job: t`Workflow Job`,
};
+ const scmTypes = {
+ '': t`Manual`,
+ git: t`Git`,
+ svn: t`Subversion`,
+ insights: t`Red Hat Insights`,
+ archive: t`Remote Archive`,
+ };
+
const deleteJob = async () => {
try {
await getJobModel(job.type).destroy(job.id);
@@ -241,6 +249,11 @@ function JobDetail({ job, inventorySourceLabels }) {
label={t`Job Type`}
value={jobTypes[job.type]}
/>
+
{renderInventoryDetail()}
{inventory_source && (