Fix querylog

Signed-off-by: yubiuser <github@yubiuser.dev>
This commit is contained in:
yubiuser
2025-11-09 16:06:45 +01:00
committed by Adam Warner
parent b06320eccc
commit a79dfc8296
2 changed files with 3 additions and 4 deletions

View File

@@ -437,7 +437,7 @@ function formatInfo(data) {
'<div class="row">' +
divStart +
"Query received on:&nbsp;&nbsp;" +
luxon.DateTime.fromMillis(data.time * 1000).toFormat("yyyy-MM-dd HH:mm:ss.SSS z") +
luxon.DateTime.fromMillis(data.time * 1000).toFormat("yyyy-MM-dd HH:mm:ss.SSS ZZZZ") +
"</div>" +
clientInfo +
dnssecInfo +
@@ -445,7 +445,6 @@ function formatInfo(data) {
statusInfo +
cnameInfo +
listInfo +
ttlInfo +
replyInfo +
dbInfo +
"</div>"
@@ -598,7 +597,7 @@ $(() => {
render(data, type) {
if (type === "display") {
return luxon.DateTime.fromMillis(data * 1000).toFormat(
"yyyy-MM-dd [<br class='hidden-lg'>]HH:mm:ss z"
"yyyy-MM-dd <br class='hidden-lg'>HH:mm:ss"
);
}