mirror of
https://github.com/ansible/awx.git
synced 2026-04-14 06:29:25 -02:30
Add case insensitive search for Name
This commit is contained in:
@@ -82,6 +82,13 @@ function ManagementJobList({ i18n }) {
|
|||||||
pluralizedItemName={i18n._(t`Management Jobs`)}
|
pluralizedItemName={i18n._(t`Management Jobs`)}
|
||||||
toolbarSearchableKeys={searchableKeys}
|
toolbarSearchableKeys={searchableKeys}
|
||||||
toolbarRelatedSearchableKeys={relatedSearchableKeys}
|
toolbarRelatedSearchableKeys={relatedSearchableKeys}
|
||||||
|
toolbarSearchColumns={[
|
||||||
|
{
|
||||||
|
name: i18n._(t`Name`),
|
||||||
|
key: 'name__icontains',
|
||||||
|
isDefault: true,
|
||||||
|
},
|
||||||
|
]}
|
||||||
renderToolbar={props => (
|
renderToolbar={props => (
|
||||||
<DatalistToolbar
|
<DatalistToolbar
|
||||||
{...props}
|
{...props}
|
||||||
|
|||||||
Reference in New Issue
Block a user