From d9f90dfbca9aa16dcd010e2c93528e8730f98002 Mon Sep 17 00:00:00 2001 From: Phil Davis Date: Thu, 28 Apr 2016 16:27:46 +0545 Subject: [PATCH] Fix #6251 Brackets around Mbuf figures (cherry picked from commit 97f930d1e3af593b20ed56ca951a2109a853a28d) --- src/usr/local/www/widgets/widgets/system_information.widget.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/usr/local/www/widgets/widgets/system_information.widget.php b/src/usr/local/www/widgets/widgets/system_information.widget.php index 1face090f0..461a686f40 100644 --- a/src/usr/local/www/widgets/widgets/system_information.widget.php +++ b/src/usr/local/www/widgets/widgets/system_information.widget.php @@ -402,7 +402,7 @@ function updateMemory(x) { function updateMbuf(x) { if ($('#mbuf')) { - $("#mbuf").html(x); + $("#mbuf").html('(' + x + ')'); } }