From fdae63090f0065acdac26bb77f6eafe3f960fb8d Mon Sep 17 00:00:00 2001 From: Jared Tabor Date: Thu, 14 Apr 2016 15:20:51 -0700 Subject: [PATCH] Changing verbage of notificaiton success/failure message --- .../notification-templates-list/list.controller.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/awx/ui/client/src/notifications/notification-templates-list/list.controller.js b/awx/ui/client/src/notifications/notification-templates-list/list.controller.js index 83ef89fa03..fb1004cb27 100644 --- a/awx/ui/client/src/notifications/notification-templates-list/list.controller.js +++ b/awx/ui/client/src/notifications/notification-templates-list/list.controller.js @@ -155,13 +155,13 @@ export default Rest.post({}) .then(function () { ngToast.success({ - content: ` Test Notification Success: ${name} `, + content: ` ${name}: Notification Succeeded.`, }); }) .catch(function () { ngToast.danger({ - content: 'Test Notification Failure' + content: ` ${name}: Notification Failed.`, }); }); };