1
0
mirror of https://github.com/ansible/awx.git synced 2024-10-31 23:51:09 +03:00

Changing verbage of notificaiton success/failure message

This commit is contained in:
Jared Tabor 2016-04-14 15:20:51 -07:00
parent b929628b58
commit fdae63090f

View File

@ -155,13 +155,13 @@ export default
Rest.post({}) Rest.post({})
.then(function () { .then(function () {
ngToast.success({ ngToast.success({
content: `<i class="fa fa-check-circle Toast-successIcon"></i> Test Notification Success: <b>${name}</b> `, content: `<i class="fa fa-check-circle Toast-successIcon"></i> <b>${name}:</b> Notification Succeeded.`,
}); });
}) })
.catch(function () { .catch(function () {
ngToast.danger({ ngToast.danger({
content: 'Test Notification Failure' content: `<i class="fa fa-check-circle Toast-successIcon"></i> <b>${name}:</b> Notification Failed.`,
}); });
}); });
}; };