Replace remaining i element cases with em

Signed-off-by: XhmikosR <xhmikosr@gmail.com>
This commit is contained in:
XhmikosR
2025-04-03 07:59:27 +03:00
parent 1e8baebb08
commit addad5495a
5 changed files with 5 additions and 5 deletions

View File

@@ -113,7 +113,7 @@ $(function () {
// Show x-forwarded-for instead of the remote address in italics
// and show the remote address in the title attribute
if (data.x_forwarded_for !== null) {
$("td:eq(8)", row).html("<i>" + data.x_forwarded_for + "</i>");
$("td:eq(8)", row).html("<em>" + data.x_forwarded_for + "</em>");
$("td:eq(8)", row).attr("title", "Original remote address: " + data.remote_addr);
}
},