From 4ffc8dc9d86c03b2acc8f226234922fba5995516 Mon Sep 17 00:00:00 2001 From: TheErrorExe <161362055+TheErrorExe@users.noreply.github.com> Date: Sat, 22 Feb 2025 22:32:47 +0100 Subject: [PATCH] Update index.html --- drmifo/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drmifo/index.html b/drmifo/index.html index 16c7822..da4436b 100644 --- a/drmifo/index.html +++ b/drmifo/index.html @@ -151,7 +151,7 @@ fetch("/drmifo/schedule.json?nocache=" + new Date().getTime()) const table = document.getElementById("scheduleTable"); data.forEach(event => { const row = document.createElement("tr"); - row.innerHTML = `${event.tag}${event.zeit}${event.infos}`; + row.innerHTML = `${event.tag}${event.zeit}${event.infos}${event.datum}`; table.appendChild(row); }); })