mirror of
https://github.com/ansible/awx.git
synced 2026-03-18 17:37:30 -02:30
Added order_by default params to the workflow add/edit lists
This commit is contained in:
@@ -89,14 +89,16 @@ angular.module('templates', [surveyMaker.name, templatesList.name, jobTemplatesA
|
|||||||
job_template_search: {
|
job_template_search: {
|
||||||
value: {
|
value: {
|
||||||
page_size: '5',
|
page_size: '5',
|
||||||
type: 'job_template'
|
type: 'job_template',
|
||||||
|
order_by: 'name'
|
||||||
},
|
},
|
||||||
squash: true,
|
squash: true,
|
||||||
dynamic: true
|
dynamic: true
|
||||||
},
|
},
|
||||||
project_search: {
|
project_search: {
|
||||||
value: {
|
value: {
|
||||||
page_size: '5'
|
page_size: '5',
|
||||||
|
order_by: 'name'
|
||||||
},
|
},
|
||||||
squash: true,
|
squash: true,
|
||||||
dynamic: true
|
dynamic: true
|
||||||
@@ -104,7 +106,8 @@ angular.module('templates', [surveyMaker.name, templatesList.name, jobTemplatesA
|
|||||||
inventory_source_search: {
|
inventory_source_search: {
|
||||||
value: {
|
value: {
|
||||||
page_size: '5',
|
page_size: '5',
|
||||||
not__source: ''
|
not__source: '',
|
||||||
|
order_by: 'name'
|
||||||
},
|
},
|
||||||
squash: true,
|
squash: true,
|
||||||
dynamic: true
|
dynamic: true
|
||||||
|
|||||||
Reference in New Issue
Block a user