From f867ed17b4d64f32b8985db6a1ee751553defab4 Mon Sep 17 00:00:00 2001 From: Michael Abashian Date: Wed, 15 Jun 2016 17:25:21 -0400 Subject: [PATCH] Changed notification list header titles from Successful/Failed to Success/Failure --- awx/ui/client/src/notifications/notifications.list.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/awx/ui/client/src/notifications/notifications.list.js b/awx/ui/client/src/notifications/notifications.list.js index 3c9b8ae533..d543978ab5 100644 --- a/awx/ui/client/src/notifications/notifications.list.js +++ b/awx/ui/client/src/notifications/notifications.list.js @@ -31,7 +31,7 @@ export default function(){ columnClass: 'col-md-4 hidden-sm hidden-xs' }, notification_templates_success: { - label: 'Successful', + label: 'Success', flag: 'notification_templates_success', type: "toggle", ngClick: "toggleNotification($event, notification.id, \"notification_templates_success\")", @@ -42,7 +42,7 @@ export default function(){ nosort: true, }, notification_templates_error: { - label: 'Failed', + label: 'Failure', columnClass: 'NotifierList-lastColumn', flag: 'notification_templates_error', type: "toggle",