diff --git a/awx/ui_next/src/components/Lookup/InventoryLookup.jsx b/awx/ui_next/src/components/Lookup/InventoryLookup.jsx index 29c667660d..be18418972 100644 --- a/awx/ui_next/src/components/Lookup/InventoryLookup.jsx +++ b/awx/ui_next/src/components/Lookup/InventoryLookup.jsx @@ -69,7 +69,7 @@ function InventoryLookup({ searchableKeys: Object.keys( actionsResponse.data.actions?.GET || {} ).filter(key => { - if (key === 'kind' && hideSmartInventories) { + if (['kind', 'host_filter'].includes(key) && hideSmartInventories) { return false; } return actionsResponse.data.actions?.GET[key].filterable;