From 967ec35c6a4fadbc296801508d420b35c54c3aaf Mon Sep 17 00:00:00 2001 From: Manuel Weiser Date: Sun, 2 Mar 2025 20:21:27 +0100 Subject: [PATCH] fix: correct typo in console log for total length --- html/spoolman.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html/spoolman.js b/html/spoolman.js index 7cb2f6a..cbc9c67 100644 --- a/html/spoolman.js +++ b/html/spoolman.js @@ -86,7 +86,7 @@ function populateVendorDropdown(data, selectedSmId = null) { }); // Nach der Schleife: Formatierung der Gesamtlänge - console.log("Total Lenght: ", totalLength); + console.log("Total Length: ", totalLength); const formattedLength = totalLength > 1000 ? (totalLength / 1000).toFixed(2) + " km" : totalLength.toFixed(2) + " m";