Remove hyphens

This commit is contained in:
Ettore
2026-05-06 01:58:46 +02:00
parent de2ce65743
commit 2b598279d0
5 changed files with 12 additions and 12 deletions

View File

@@ -1,4 +1,4 @@
/* admin.js Lagomare Gates admin panel */
/* admin.js - Lagomare Gates admin panel */
// ── Token helpers ─────────────────────────────────────────────────────────────
const TOKEN_KEY = "lg_admin_token";
@@ -475,8 +475,8 @@ async function loadStats() {
<td style="white-space:nowrap">${fmtDate(r.timestamp.replace(' ', 'T'))}</td>
<td><code style="font-size:.85em">${esc(r.keypass_code)}</code></td>
<td>${esc(r.gate_name)}</td>
<td style="font-size:.85em;font-family:monospace">${esc(r.ip_address || '')}</td>
<td style="font-size:.8em;color:var(--text-muted);max-width:220px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap" title="${esc(r.user_agent || '')}">${esc(r.user_agent || '')}</td>
<td style="font-size:.85em;font-family:monospace">${esc(r.ip_address || '-')}</td>
<td style="font-size:.8em;color:var(--text-muted);max-width:220px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap" title="${esc(r.user_agent || '')}">${esc(r.user_agent || '-')}</td>
<td>${badge}</td>`;
tbody.appendChild(tr);
}