From 1b726a1b2f506e98ce078a225f40412a741a26c1 Mon Sep 17 00:00:00 2001 From: John Mitchell Date: Tue, 14 Jan 2020 13:28:44 -0500 Subject: [PATCH] fix malformed search key column array on project lookup --- awx/ui_next/src/components/Lookup/ProjectLookup.jsx | 1 + 1 file changed, 1 insertion(+) diff --git a/awx/ui_next/src/components/Lookup/ProjectLookup.jsx b/awx/ui_next/src/components/Lookup/ProjectLookup.jsx index 63f4e1c181..e586488dd5 100644 --- a/awx/ui_next/src/components/Lookup/ProjectLookup.jsx +++ b/awx/ui_next/src/components/Lookup/ProjectLookup.jsx @@ -78,6 +78,7 @@ function ProjectLookup({ }, { name: i18n._(t`Type`), + key: 'type', options: [ [``, i18n._(t`Manual`)], [`git`, i18n._(t`Git`)],