Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/openwrt/luci.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJo-Philipp Wich <jo@mein.io>2021-10-08 20:50:23 +0300
committerJo-Philipp Wich <jo@mein.io>2021-10-08 20:53:09 +0300
commitaa37e85536eac666f5a276dad3905ebd73f6c04d (patch)
tree5f988eaa7499c169349130746ef3c9db6cd0dd4d /applications/luci-app-bmx7
parenta93a91d75862e13940135ac7a86a395e6b5834af (diff)
luci-app-bmx7: fix markup which is not valid XHTML
Replace `<br>` with `<br />` as XHTML does not allow self-closing tags. Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'applications/luci-app-bmx7')
-rw-r--r--applications/luci-app-bmx7/root/www/luci-static/resources/bmx7/js/netjsongraph.js2
1 files changed, 1 insertions, 1 deletions
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 += "<p><b>links</b>: " + n.linkCount + "</p>"; }
if(n.local_addresses) {
- html += "<p><b>local addresses</b>:<br>" + n.local_addresses.join('<br>') + "</p>";
+ html += "<p><b>local addresses</b>:<br />" + n.local_addresses.join('<br />') + "</p>";
}
overlayInner.html(html);
overlay.classed("njg-hidden", false);