diff --git a/views/default.handlebars b/views/default.handlebars
index 69ef28c429..c7cad46fc8 100644
--- a/views/default.handlebars
+++ b/views/default.handlebars
@@ -4739,13 +4739,13 @@
r += '' + groupingTags + '';
}
if (deviceViewSettings.devsCols.indexOf('windowsav') >= 0) { // Windows AV
- r += '
' + (node.wsc ? (node.wsc.antiVirus == 'OK' ? "OK" : "OK") : "");
+ r += ' | ' + (node.wsc ? (node.wsc.antiVirus == 'OK' ? "OK" : "BAD") : "");
}
if (deviceViewSettings.devsCols.indexOf('windowsupdate') >= 0) {// Windows Update
- r += ' | ' + (node.wsc ? (node.wsc.autoUpdate == 'OK' ? "OK" : "OK") : "");
+ r += ' | ' + (node.wsc ? (node.wsc.autoUpdate == 'OK' ? "OK" : "BAD") : "");
}
if (deviceViewSettings.devsCols.indexOf('windowsfirewall') >= 0) { // Windows Firewall
- r += ' | ' + (node.wsc ? (node.wsc.firewall == 'OK' ? "OK" : "OK") : "");
+ r += ' | ' + (node.wsc ? (node.wsc.firewall == 'OK' ? "OK" : "BAD") : "");
}
if (deviceViewSettings.devsCols.indexOf('links') >= 0) { r += ' | ' + getShortRouterLinks(node); } // Links
if (deviceViewSettings.devsCols.indexOf('user') >= 0) { r += ' | ' + getUserShortStr(node); } // User
|