Remove trailing slash from void elements

Signed-off-by: XhmikosR <xhmikosr@gmail.com>
This commit is contained in:
XhmikosR
2025-03-10 22:14:31 +02:00
parent b46720d880
commit c003548906
4 changed files with 6 additions and 6 deletions

View File

@@ -181,7 +181,7 @@ $(function () {
// MAC + Vendor field if available
if (data.macVendor && data.macVendor.length > 0) {
$("td:eq(1)", row).html(
utils.escapeHtml(data.hwaddr) + "<br/>" + utils.escapeHtml(data.macVendor)
utils.escapeHtml(data.hwaddr) + "<br>" + utils.escapeHtml(data.macVendor)
);
}