From a690a9134caef2de4e264bd7a9ddc73756551671 Mon Sep 17 00:00:00 2001 From: Yegor Bugayenko Date: Wed, 31 Oct 2018 16:02:11 +0300 Subject: [PATCH] #86 links --- js/health.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/health.js b/js/health.js index 81df71e5..ed146964 100644 --- a/js/health.js +++ b/js/health.js @@ -119,7 +119,7 @@ function health_node(addr) { $ping.text(msec).colorize({ 1000: 'red', 500: 'orange', 0: 'green' }); $tr.find('td.alias').text(json.alias); $tr.find('td.platform').text(json.platform); - $tr.find('td.cpus').text(json.cpus); + $tr.find('td.cpus').html("" + json.cpus + ""); $tr.find('td.memory').text((json.memory / (1024 * 1024)).toFixed(0)); $tr.find('td.load').text(json.load.toFixed(2)).colorize({ 8: 'red', 4: 'orange', 0: 'green' }); $tr.find('td.threads').html("" + json.threads + "");