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>
This commit is contained in:
parent
a93a91d758
commit
aa37e85536
1 changed files with 1 additions and 1 deletions
|
@ -227,7 +227,7 @@
|
||||||
}
|
}
|
||||||
if(n.linkCount) { html += "<p><b>links</b>: " + n.linkCount + "</p>"; }
|
if(n.linkCount) { html += "<p><b>links</b>: " + n.linkCount + "</p>"; }
|
||||||
if(n.local_addresses) {
|
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);
|
overlayInner.html(html);
|
||||||
overlay.classed("njg-hidden", false);
|
overlay.classed("njg-hidden", false);
|
||||||
|
|
Loading…
Reference in a new issue