From 7782b1ddf47e603ea5d60b6a5a7c345e7f3260d0 Mon Sep 17 00:00:00 2001 From: John Mitchell Date: Tue, 5 May 2020 15:20:21 -0400 Subject: [PATCH] adds description-based search to templates list --- .../src/screens/Template/TemplateList/TemplateList.jsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/awx/ui_next/src/screens/Template/TemplateList/TemplateList.jsx b/awx/ui_next/src/screens/Template/TemplateList/TemplateList.jsx index b70e34304d..707eac6684 100644 --- a/awx/ui_next/src/screens/Template/TemplateList/TemplateList.jsx +++ b/awx/ui_next/src/screens/Template/TemplateList/TemplateList.jsx @@ -153,6 +153,10 @@ function TemplateList({ i18n }) { key: 'name', isDefault: true, }, + { + name: i18n._(t`Description`), + key: 'description', + }, { name: i18n._(t`Type`), key: 'type',