From 62a1f10c42705cb01178a96d44954580b6ca3827 Mon Sep 17 00:00:00 2001 From: mabashian Date: Mon, 26 Nov 2018 09:15:37 -0500 Subject: [PATCH] Fix node pagination for project/inv --- .../workflow-maker/forms/workflow-node-form.controller.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/awx/ui/client/src/templates/workflows/workflow-maker/forms/workflow-node-form.controller.js b/awx/ui/client/src/templates/workflows/workflow-maker/forms/workflow-node-form.controller.js index e622a31782..2894ab91dd 100644 --- a/awx/ui/client/src/templates/workflows/workflow-maker/forms/workflow-node-form.controller.js +++ b/awx/ui/client/src/templates/workflows/workflow-maker/forms/workflow-node-form.controller.js @@ -591,7 +591,7 @@ export default ['$scope', 'TemplatesService', 'JobTemplateModel', 'PromptService ); $scope.wf_maker_project_queryset = { - page_size: '5', + page_size: '10', order_by: 'name' }; @@ -607,7 +607,7 @@ export default ['$scope', 'TemplatesService', 'JobTemplateModel', 'PromptService ); $scope.wf_maker_inventory_source_dataset = { - page_size: '5', + page_size: '10', order_by: 'name', not__source: '' };