mirror of
https://github.com/ansible/awx.git
synced 2026-01-14 03:10:42 -03:30
Fixed recent job runs workflows link
This commit is contained in:
parent
293063d315
commit
de4aeb064c
@ -29,7 +29,7 @@ export default
|
||||
// detailsUrl, status, name, time
|
||||
scope.jobs = _.map(list, function(job){
|
||||
return {
|
||||
detailsUrl: job.url.replace("api/v1", "#"),
|
||||
detailsUrl: job.type && job.type === 'workflow_job' ? job.url.replace("api/v1/workflow_jobs", "#/workflows") : job.url.replace("api/v1", "#"),
|
||||
status: job.status,
|
||||
name: job.name,
|
||||
id: job.id,
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user