From 7ff8a3764bd4dccca7227a03a0160f7f9d89ce47 Mon Sep 17 00:00:00 2001 From: Nikhil Jain Date: Mon, 31 Jan 2022 09:34:58 +0530 Subject: [PATCH] add job id to the jobs details page --- awx/ui/src/screens/Job/Jobs.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/ui/src/screens/Job/Jobs.js b/awx/ui/src/screens/Job/Jobs.js index c4d9175eab..5996f1a998 100644 --- a/awx/ui/src/screens/Job/Jobs.js +++ b/awx/ui/src/screens/Job/Jobs.js @@ -23,7 +23,7 @@ function Jobs() { const typeSegment = JOB_TYPE_URL_SEGMENTS[job.type]; setBreadcrumbConfig({ '/jobs': t`Jobs`, - [`/jobs/${typeSegment}/${job.id}`]: `${job.name}`, + [`/jobs/${typeSegment}/${job.id}`]: `${job.id} - ${job.name}`, [`/jobs/${typeSegment}/${job.id}/output`]: t`Output`, [`/jobs/${typeSegment}/${job.id}/details`]: t`Details`, });