From 2ff3b5d62c2af08a58a009d9ea7af97f679f0013 Mon Sep 17 00:00:00 2001 From: pebbledavec <35338729+pebbledavec@users.noreply.github.com> Date: Tue, 9 Jul 2019 12:50:40 +0100 Subject: [PATCH] Removed forwardslash that was breaking paginated workflow node requests. The forward-slash in getWorkflowJobTemplateNodes was incorrectly interpreted as part of the pagesize integer (and thereby throwing an exception) when a complex workflow spanned multiple pages of workflow nodes. Resolves: #4261 Signed-off-by: Dave Compton --- awx/ui/client/src/templates/templates.service.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/ui/client/src/templates/templates.service.js b/awx/ui/client/src/templates/templates.service.js index 71ebb17626..f73c77b876 100644 --- a/awx/ui/client/src/templates/templates.service.js +++ b/awx/ui/client/src/templates/templates.service.js @@ -136,7 +136,7 @@ export default ['Rest', 'GetBasePath', '$q', 'NextPage', function(Rest, GetBaseP url = url + id + '/workflow_nodes?page_size=200'; if(page) { - url += '/&page=' + page; + url += '&page=' + page; } Rest.setUrl(url);