diff --git a/awx/ui_next/src/components/JobList/JobListItem.jsx b/awx/ui_next/src/components/JobList/JobListItem.jsx index 0bd31dce77..0a248b93d5 100644 --- a/awx/ui_next/src/components/JobList/JobListItem.jsx +++ b/awx/ui_next/src/components/JobList/JobListItem.jsx @@ -12,6 +12,7 @@ import StatusLabel from '../StatusLabel'; import { DetailList, Detail, LaunchedByDetail } from '../DetailList'; import ChipGroup from '../ChipGroup'; import CredentialChip from '../CredentialChip'; +import ExecutionEnvironmentDetail from '../ExecutionEnvironmentDetail'; import { formatDateString } from '../../util/dates'; import { JOB_TYPE_URL_SEGMENTS } from '../../constants'; @@ -36,7 +37,16 @@ function JobListItem({ workflow_job: i18n._(t`Workflow Job`), }; - const { credentials, inventory, labels } = job.summary_fields; + const { + credentials, + execution_environment, + inventory, + job_template, + labels, + project, + source_workflow_job, + workflow_job_template, + } = job.summary_fields; return ( <> @@ -118,34 +128,39 @@ function JobListItem({