Merge pull request #11646 from jainnikhil30/fix_jobs_id

add job id to the jobs details page
This commit is contained in:
Kersom
2022-02-01 08:45:51 -05:00
committed by GitHub

View File

@@ -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`,
});