Merge "Add a check for node last_error equal to null"

This commit is contained in:
Jenkins 2016-11-14 13:51:24 +00:00 committed by Gerrit Code Review
commit 3700e81389

View File

@ -141,10 +141,12 @@
if (lastError &&
ctrl.node.last_error !== "" &&
ctrl.node.last_error !== null &&
ctrl.node.last_error !== lastError) {
toastService.add(
'error',
"Node " + ctrl.node.name + ". " + ctrl.node.last_error);
toastService.add('error',
"Error detected on node " +
ctrl.node.name + ". " +
ctrl.node.last_error);
}
});
}