From aa37e85536eac666f5a276dad3905ebd73f6c04d Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Fri, 8 Oct 2021 19:50:23 +0200 Subject: [PATCH] luci-app-bmx7: fix markup which is not valid XHTML Replace `
` with `
` as XHTML does not allow self-closing tags. Signed-off-by: Jo-Philipp Wich --- .../root/www/luci-static/resources/bmx7/js/netjsongraph.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications/luci-app-bmx7/root/www/luci-static/resources/bmx7/js/netjsongraph.js b/applications/luci-app-bmx7/root/www/luci-static/resources/bmx7/js/netjsongraph.js index 5e9e02d26e..1df0db4e33 100644 --- a/applications/luci-app-bmx7/root/www/luci-static/resources/bmx7/js/netjsongraph.js +++ b/applications/luci-app-bmx7/root/www/luci-static/resources/bmx7/js/netjsongraph.js @@ -227,7 +227,7 @@ } if(n.linkCount) { html += "

links: " + n.linkCount + "

"; } if(n.local_addresses) { - html += "

local addresses:
" + n.local_addresses.join('
') + "

"; + html += "

local addresses:
" + n.local_addresses.join('
') + "

"; } overlayInner.html(html); overlay.classed("njg-hidden", false); -- 2.30.2