diff --git a/awx/ui/src/components/Lookup/CredentialLookup.js b/awx/ui/src/components/Lookup/CredentialLookup.js index 5256c20e6b44..f1da6f391a2d 100644 --- a/awx/ui/src/components/Lookup/CredentialLookup.js +++ b/awx/ui/src/components/Lookup/CredentialLookup.js @@ -62,7 +62,7 @@ function CredentialLookup({ ? { credential_type: credentialTypeId } : {}; const typeKindParams = credentialTypeKind - ? { credential_type__kind: credentialTypeKind } + ? { credential_type__kind__in: credentialTypeKind } : {}; const typeNamespaceParams = credentialTypeNamespace ? { credential_type__namespace: credentialTypeNamespace } @@ -125,7 +125,7 @@ function CredentialLookup({ ? { credential_type: credentialTypeId } : {}; const typeKindParams = credentialTypeKind - ? { credential_type__kind: credentialTypeKind } + ? { credential_type__kind__in: credentialTypeKind } : {}; const typeNamespaceParams = credentialTypeNamespace ? { credential_type__namespace: credentialTypeNamespace } diff --git a/awx/ui/src/screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js b/awx/ui/src/screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js index 043ddcebe7ac..5b772bf08a08 100644 --- a/awx/ui/src/screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js +++ b/awx/ui/src/screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js @@ -87,7 +87,7 @@ const SCMSubForm = ({ autoPopulateProject }) => { /> )}