make the view a link

This commit is contained in:
Girish Ramakrishnan
2019-02-13 15:13:34 -08:00
parent 59ff3998bc
commit e348a1d2c5

View File

@@ -277,7 +277,7 @@ function checkMailStatus(callback) {
const erroredDomains = erroredDomainObjects.map((d) => d.domain);
debug(`checkMailStatus: ${erroredDomains.join(',')} failed status checks`);
if (erroredDomains.length) notifications.mailStatusWarning(`Email status check of one or more domains failed - ${erroredDomains.join(',')}. See the Status tab in the Email view for more information.`);
if (erroredDomains.length) notifications.mailStatusWarning(`Email status check of the following domain(s) failed - ${erroredDomains.join(',')}. See the Status tab in the [Email view](/#/email/) for more information.`);
callback();
});