switch host filter lookup to use icontains searches for name/group

This commit is contained in:
Keith Grant 2020-10-28 15:41:03 -07:00
parent 51600986c9
commit fa07889f39

View File

@ -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`),