From 07e4fcda42d8e906d45ceebc7d86c0e121755339 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Mon, 16 Oct 2023 10:02:11 -0400 Subject: [PATCH] src/index.html.in: add a "const" to a javascript variable --- src/index.html.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.html.in b/src/index.html.in index 992d9ec..b3407fc 100644 --- a/src/index.html.in +++ b/src/index.html.in @@ -234,7 +234,7 @@ tt = document.getElementById("tickettime"); tt.firstChild.textContent = date.toLocaleTimeString(); - td = document.getElementById("ticketdate"); + const td = document.getElementById("ticketdate"); const dateopts = { day: "2-digit", month: "2-digit", -- 2.44.2