mirror of
https://github.com/ansible/awx.git
synced 2026-05-19 14:57:39 -02:30
Fix credentials search in adhoc prompt modal
This commit is contained in:
@@ -115,16 +115,16 @@ function AdHocCredentialStep({ credentialTypeId }) {
|
|||||||
searchColumns={[
|
searchColumns={[
|
||||||
{
|
{
|
||||||
name: t`Name`,
|
name: t`Name`,
|
||||||
key: 'name',
|
key: 'name__icontains',
|
||||||
isDefault: true,
|
isDefault: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: t`Created By (Username)`,
|
name: t`Created By (Username)`,
|
||||||
key: 'created_by__username',
|
key: 'created_by__username__icontains',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: t`Modified By (Username)`,
|
name: t`Modified By (Username)`,
|
||||||
key: 'modified_by__username',
|
key: 'modified_by__username__icontains',
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
sortColumns={[
|
sortColumns={[
|
||||||
|
|||||||
Reference in New Issue
Block a user