diff --git a/xCAT-UI/js/nodes/nodes.js b/xCAT-UI/js/nodes/nodes.js
index 2aaf1a2a6..b94d2fee5 100644
--- a/xCAT-UI/js/nodes/nodes.js
+++ b/xCAT-UI/js/nodes/nodes.js
@@ -405,7 +405,11 @@ function loadNodes(data) {
// Create a check box, node link, and get node status
var checkBx = '';
var nodeLink = $('' + node + '').bind('click', loadNode);
- var status = attrs[node]['status'].replace('sshd', 'ping');
+ var status = '';
+ if (attrs[node]['status']){
+ status = attrs[node]['status'].replace('sshd', 'ping');
+ }
+
// Push in checkbox, node link, status, and power
row.push(checkBx, nodeLink, status, '');