@@ -318,7 +318,7 @@
-
+
diff --git a/src/static/admin.js b/src/static/admin.js
index 2efdbb1..5e8c88b 100644
--- a/src/static/admin.js
+++ b/src/static/admin.js
@@ -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() {
${fmtDate(r.timestamp.replace(' ', 'T'))} |
${esc(r.keypass_code)} |
${esc(r.gate_name)} |
- ${esc(r.ip_address || '–')} |
- ${esc(r.user_agent || '–')} |
+ ${esc(r.ip_address || '-')} |
+ ${esc(r.user_agent || '-')} |
${badge} | `;
tbody.appendChild(tr);
}
diff --git a/src/static/app.js b/src/static/app.js
index 5b35fa7..f480cb0 100644
--- a/src/static/app.js
+++ b/src/static/app.js
@@ -1,4 +1,4 @@
-/* app.js – Lagomare Gates frontend */
+/* app.js - Lagomare Gates frontend */
// ── Token helpers ─────────────────────────────────────────────────────────────
const TOKEN_KEY = "lg_keypass_token";
@@ -28,7 +28,7 @@ async function apiFetch(method, path, body) {
if (res.status === 401) {
clearToken();
showLogin();
- throw new Error("Session expired – please log in again.");
+ throw new Error("Session expired - please log in again.");
}
if (!res.ok) {
const json = await res.json().catch(() => null);
diff --git a/src/static/sw.js b/src/static/sw.js
index 9c52ba4..77e52d5 100644
--- a/src/static/sw.js
+++ b/src/static/sw.js
@@ -1,5 +1,5 @@
-/* Service worker – Lagomare Gates */
-const CACHE = "lagomare-gates-v1.1";
+/* Service worker - Lagomare Gates */
+const CACHE = "lagomare-gates-v1";
const PRECACHE = ["/", "/static/style.css", "/static/app.js", "/static/logo.svg", "/manifest.json"];
self.addEventListener("install", event => {