From 0e3bdb5e8ae3b3bb1b8b79fd6225ad73803818c0 Mon Sep 17 00:00:00 2001 From: LLLL Colonq Date: Wed, 17 Dec 2025 03:14:46 -0500 Subject: Fix M4 --- templates/api/debtclock.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'templates/api/debtclock.html') diff --git a/templates/api/debtclock.html b/templates/api/debtclock.html index 84086d7..884205d 100644 --- a/templates/api/debtclock.html +++ b/templates/api/debtclock.html @@ -72,8 +72,8 @@ let parent = document.getElementById("debtclock"); let child = document.createElement("span"); child.className = cl; - child.id = `d-${field}`; - child.style = `right: ${3548-x}px; top: ${y}px;`; + child.id = "d-" + field.toString(); + child.style = "right: " + (3548-x).toString() + "px; top: " + y.toString() + "px;"; child.innerText = "N/A"; parent.appendChild(child); } -- cgit v1.2.3