mirror of
https://github.com/ansible/awx.git
synced 2024-10-31 15:21:13 +03:00
Changing verbage of notificaiton success/failure message
This commit is contained in:
parent
b929628b58
commit
fdae63090f
@ -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.`,
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user