From e9a51c0bcc36d43211a6da877410d2edd10bb6d1 Mon Sep 17 00:00:00 2001 From: mabashian Date: Wed, 16 Dec 2020 09:20:12 -0500 Subject: [PATCH] Fix casing on quick search labels --- .../NotificationTemplateList/NotificationTemplateList.jsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/awx/ui_next/src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx b/awx/ui_next/src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx index a722f8fe6b..a377e73e79 100644 --- a/awx/ui_next/src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx +++ b/awx/ui_next/src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx @@ -123,7 +123,7 @@ function NotificationTemplatesList({ i18n }) { key: 'description__icontains', }, { - name: i18n._(t`Type`), + name: i18n._(t`Notification type`), key: 'or__notification_type', options: [ ['email', i18n._(t`Email`)], @@ -139,11 +139,11 @@ function NotificationTemplatesList({ i18n }) { ], }, { - name: i18n._(t`Created By (Username)`), + name: i18n._(t`Created by (username)`), key: 'created_by__username__icontains', }, { - name: i18n._(t`Modified By (Username)`), + name: i18n._(t`Modified by (username)`), key: 'modified_by__username__icontains', }, ]}