From 054a70bda48f18cc55f9e2d2d6201aae7f8a93a2 Mon Sep 17 00:00:00 2001 From: Marliana Lara Date: Tue, 28 Feb 2023 16:03:35 -0500 Subject: [PATCH] Filter constructed inventory hosts from smart inventory host lookup --- awx/ui/src/components/Lookup/HostFilterLookup.js | 1 + 1 file changed, 1 insertion(+) diff --git a/awx/ui/src/components/Lookup/HostFilterLookup.js b/awx/ui/src/components/Lookup/HostFilterLookup.js index 46e0a3dd1f..ce02a9802b 100644 --- a/awx/ui/src/components/Lookup/HostFilterLookup.js +++ b/awx/ui/src/components/Lookup/HostFilterLookup.js @@ -84,6 +84,7 @@ const QS_CONFIG = getQSConfig( page: 1, page_size: 5, order_by: 'name', + not__inventory__kind: 'constructed', }, ['id', 'page', 'page_size', 'inventory'] );