mirror of
https://github.com/ansible/awx.git
synced 2026-05-08 01:47:35 -02:30
Merge pull request #4296 from pebbledavec/patch-1
Removed forwardslash that was breaking paginated workflow node requests. Reviewed-by: https://github.com/softwarefactory-project-zuul[bot]
This commit is contained in:
@@ -136,7 +136,7 @@ export default ['Rest', 'GetBasePath', '$q', 'NextPage', function(Rest, GetBaseP
|
|||||||
url = url + id + '/workflow_nodes?page_size=200';
|
url = url + id + '/workflow_nodes?page_size=200';
|
||||||
|
|
||||||
if(page) {
|
if(page) {
|
||||||
url += '/&page=' + page;
|
url += '&page=' + page;
|
||||||
}
|
}
|
||||||
|
|
||||||
Rest.setUrl(url);
|
Rest.setUrl(url);
|
||||||
|
|||||||
Reference in New Issue
Block a user