diff --git a/net/haproxy/Makefile b/net/haproxy/Makefile index f277a2c24..6f31a5eec 100644 --- a/net/haproxy/Makefile +++ b/net/haproxy/Makefile @@ -1,5 +1,5 @@ PLUGIN_NAME= haproxy -PLUGIN_VERSION= 1.14 +PLUGIN_VERSION= 1.15 PLUGIN_COMMENT= Reliable, high performance TCP/HTTP load balancer PLUGIN_DEPENDS= haproxy PLUGIN_MAINTAINER= opnsense@moov.de 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.