diff --git a/awx/ui_next/src/components/Lookup/InstanceGroupsLookup.jsx b/awx/ui_next/src/components/Lookup/InstanceGroupsLookup.jsx index b348356db1..f44c9e5144 100644 --- a/awx/ui_next/src/components/Lookup/InstanceGroupsLookup.jsx +++ b/awx/ui_next/src/components/Lookup/InstanceGroupsLookup.jsx @@ -40,6 +40,7 @@ class InstanceGroupsLookup extends React.Component { value={value} onLookupSave={onChange} getItems={getInstanceGroups} + qsNamespace="instance-group" multiple columns={[ { diff --git a/awx/ui_next/src/components/Lookup/InventoriesLookup.jsx b/awx/ui_next/src/components/Lookup/InventoriesLookup.jsx index f4ef84771d..c0e0dd04a3 100644 --- a/awx/ui_next/src/components/Lookup/InventoriesLookup.jsx +++ b/awx/ui_next/src/components/Lookup/InventoriesLookup.jsx @@ -38,6 +38,7 @@ class InventoriesLookup extends React.Component { onLookupSave={onChange} getItems={getInventories} required={required} + qsNamespace="inventory" columns={[ { name: i18n._(t`Name`), key: 'name', isSortable: true }, { diff --git a/awx/ui_next/src/screens/Template/shared/ProjectLookup.jsx b/awx/ui_next/src/screens/Template/shared/ProjectLookup.jsx index 1d4113cec9..fd38b5079e 100644 --- a/awx/ui_next/src/screens/Template/shared/ProjectLookup.jsx +++ b/awx/ui_next/src/screens/Template/shared/ProjectLookup.jsx @@ -51,6 +51,7 @@ class ProjectLookup extends React.Component { getItems={loadProjects} required={required} sortedColumnKey="name" + qsNamespace="project" /> );