mirror of
https://github.com/ansible/awx.git
synced 2026-03-02 01:08:48 -03: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 => [
|
||||
{
|
||||
name: i18n._(t`Name`),
|
||||
key: 'name',
|
||||
key: 'name__icontains',
|
||||
isDefault: true,
|
||||
},
|
||||
{
|
||||
@@ -81,7 +81,7 @@ const buildSearchColumns = i18n => [
|
||||
},
|
||||
{
|
||||
name: i18n._(t`Group`),
|
||||
key: 'groups__name',
|
||||
key: 'groups__name__icontains',
|
||||
},
|
||||
{
|
||||
name: i18n._(t`Inventory ID`),
|
||||
|
||||
Reference in New Issue
Block a user