add job id to the jobs details page

This commit is contained in:
Nikhil Jain 2022-01-31 09:34:58 +05:30
parent 32d6d746b3
commit 7ff8a3764b

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