Merge pull request #163 from mabashian/search-states-dynamic-true

Added dynamic: true to states with search that were missing it
This commit is contained in:
Michael Abashian
2017-08-03 09:39:40 -04:00
committed by GitHub
10 changed files with 22 additions and 10 deletions

View File

@@ -20,7 +20,8 @@ export default {
order_by: '-timestamp', order_by: '-timestamp',
or__object1__in: null, or__object1__in: null,
or__object2__in: null or__object2__in: null
} },
dynamic: true
} }
}, },
ncyBreadcrumb: { ncyBreadcrumb: {

View File

@@ -14,7 +14,8 @@ export default {
value: { value: {
page_size: '20', page_size: '20',
order_by: 'name' order_by: 'name'
} },
dynamic: true
} }
}, },
data: { data: {

View File

@@ -14,7 +14,8 @@ export default {
page_size: '20', page_size: '20',
order_by: '-finished', order_by: '-finished',
not__launch_type: 'sync' not__launch_type: 'sync'
} },
dynamic: true
} }
}, },
views: { views: {

View File

@@ -14,7 +14,8 @@ export default {
value: { value: {
page_size: '20', page_size: '20',
order_by: 'hostname' order_by: 'hostname'
} },
dynamic: true
} }
}, },
views: { views: {

View File

@@ -14,7 +14,8 @@ export default {
page_size: '20', page_size: '20',
order_by: '-finished', order_by: '-finished',
not__launch_type: 'sync' not__launch_type: 'sync'
} },
dynamic: true
}, },
instance_group_id: null instance_group_id: null
}, },

View File

@@ -10,6 +10,7 @@ export default {
or__inventoryupdate__inventory_source__inventory:"", or__inventoryupdate__inventory_source__inventory:"",
order_by: "-id" order_by: "-id"
}, },
dynamic: true,
squash:"" squash:""
} }
}, },

View File

@@ -20,6 +20,7 @@ export default {
not__launch_type: 'sync', not__launch_type: 'sync',
order_by: '-finished' order_by: '-finished'
}, },
dynamic: true,
squash: '' squash: ''
} }
}, },

View File

@@ -33,7 +33,8 @@ export default [{
user_search: { user_search: {
value: { value: {
order_by: 'username' order_by: 'username'
} },
dynamic: true
} }
}, },
ncyBreadcrumb: { ncyBreadcrumb: {
@@ -237,7 +238,8 @@ export default [{
or__project__organization: null, or__project__organization: null,
or__inventory__organization: null, or__inventory__organization: null,
page_size: 20 page_size: 20
} },
dynamic: true
} }
}, },
data: { data: {
@@ -294,7 +296,8 @@ export default [{
user_search: { user_search: {
value: { value: {
order_by: 'username' order_by: 'username'
} },
dynamic: true
}, },
add_user_search: { add_user_search: {
value: { value: {

View File

@@ -319,7 +319,8 @@ export default
value: { value: {
next_run__isnull: 'false', next_run__isnull: 'false',
order_by: 'unified_job_template__polymorphic_ctype__model' order_by: 'unified_job_template__polymorphic_ctype__model'
} },
dynamic: true
} }
}, },
data: { data: {

View File

@@ -25,7 +25,8 @@ export default {
template_search: { template_search: {
value: { value: {
type: 'workflow_job_template,job_template' type: 'workflow_job_template,job_template'
} },
dynamic: true
} }
}, },
searchPrefix: 'template', searchPrefix: 'template',