diff options
author | Jo-Philipp Wich <jo@mein.io> | 2021-10-08 19:50:23 +0200 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2021-10-08 19:53:09 +0200 |
commit | aa37e85536eac666f5a276dad3905ebd73f6c04d (patch) | |
tree | 5f988eaa7499c169349130746ef3c9db6cd0dd4d /applications/luci-app-bmx7/root | |
parent | a93a91d75862e13940135ac7a86a395e6b5834af (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/root')
-rw-r--r-- | applications/luci-app-bmx7/root/www/luci-static/resources/bmx7/js/netjsongraph.js | 2 |
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); |