diff --git a/net/haproxy/src/opnsense/mvc/app/views/OPNsense/HAProxy/statistics.volt b/net/haproxy/src/opnsense/mvc/app/views/OPNsense/HAProxy/statistics.volt index 6b96dfa5b..7aa2d9306 100644 --- a/net/haproxy/src/opnsense/mvc/app/views/OPNsense/HAProxy/statistics.volt +++ b/net/haproxy/src/opnsense/mvc/app/views/OPNsense/HAProxy/statistics.volt @@ -64,6 +64,7 @@ POSSIBILITY OF SUCH DAMAGE. callback = function (data, status) { if (status == "success") { // status + $("#status_nav").show(); $("#grid-status").bootgrid('destroy'); var html = []; $.each(data, function (key, value) { @@ -94,6 +95,7 @@ POSSIBILITY OF SUCH DAMAGE. callback = function (data, status) { if (status == "success") { // counters + $("#counters_nav").show(); $("#grid-counters").bootgrid('destroy'); var html = []; $.each(data, function (key, value) { @@ -124,6 +126,7 @@ POSSIBILITY OF SUCH DAMAGE. callback = function (data, status) { if (status == "success") { // tables + $("#tables_nav").show(); $("#grid-tables").bootgrid('destroy'); var html = []; $.each(data, function (key, value) { @@ -157,9 +160,9 @@ POSSIBILITY OF SUCH DAMAGE.