mirror of
https://github.com/ansible/awx.git
synced 2026-05-07 17:37:37 -02:30
switch host filter lookup to use icontains searches for name/group
This commit is contained in:
@@ -72,7 +72,7 @@ const QS_CONFIG = getQSConfig(
|
|||||||
const buildSearchColumns = i18n => [
|
const buildSearchColumns = i18n => [
|
||||||
{
|
{
|
||||||
name: i18n._(t`Name`),
|
name: i18n._(t`Name`),
|
||||||
key: 'name',
|
key: 'name__icontains',
|
||||||
isDefault: true,
|
isDefault: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -81,7 +81,7 @@ const buildSearchColumns = i18n => [
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: i18n._(t`Group`),
|
name: i18n._(t`Group`),
|
||||||
key: 'groups__name',
|
key: 'groups__name__icontains',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: i18n._(t`Inventory ID`),
|
name: i18n._(t`Inventory ID`),
|
||||||
|
|||||||
Reference in New Issue
Block a user