1
0
mirror of https://github.com/ansible/awx.git synced 2024-11-01 08:21:15 +03:00

Merge pull request #4464 from mabashian/4229-edit-recently-used

Fixed recently used job templates edit link
This commit is contained in:
Michael Abashian 2016-12-16 13:28:00 -05:00 committed by GitHub
commit ff1e9f728a

View File

@ -47,7 +47,7 @@ export default
};
scope.editJobTemplate = function (jobTemplateId) {
$state.go('templates.editJobTemplate', {id: jobTemplateId});
$state.go('templates.editJobTemplate', {job_template_id: jobTemplateId});
};
}
}];