diff --git a/awx/ui/src/components/Search/AdvancedSearch.test.js b/awx/ui/src/components/Search/AdvancedSearch.test.js
index 5050ff63af..8258ef6812 100644
--- a/awx/ui/src/components/Search/AdvancedSearch.test.js
+++ b/awx/ui/src/components/Search/AdvancedSearch.test.js
@@ -420,7 +420,7 @@ describe('', () => {
const selectOptions = wrapper.find(
'Select[aria-label="Related search type"] SelectOption'
);
- expect(selectOptions).toHaveLength(2);
+ expect(selectOptions).toHaveLength(3);
expect(
selectOptions.find('SelectOption[id="name-option-select"]').prop('value')
).toBe('name__icontains');
diff --git a/awx/ui/src/components/Search/RelatedLookupTypeInput.js b/awx/ui/src/components/Search/RelatedLookupTypeInput.js
index effbc4199a..008c83164b 100644
--- a/awx/ui/src/components/Search/RelatedLookupTypeInput.js
+++ b/awx/ui/src/components/Search/RelatedLookupTypeInput.js
@@ -31,6 +31,12 @@ function RelatedLookupTypeInput({
value="name__icontains"
description={t`Fuzzy search on name field.`}
/>
+