From d6c08a0f449a3fbe99c1a05105214626080b0e70 Mon Sep 17 00:00:00 2001 From: Nguyen Ngo Date: Thu, 7 Aug 2025 17:19:08 -0400 Subject: [PATCH] Minor change --- templates/create_qr_code.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/create_qr_code.html b/templates/create_qr_code.html index b98f06c..2770de0 100644 --- a/templates/create_qr_code.html +++ b/templates/create_qr_code.html @@ -719,8 +719,8 @@ const clearBtn = document.getElementById("clearCoordinatesBtn"); if (coordinatesData.latitude && coordinatesData.longitude) { - latDisplay.textContent = coordinatesData.latitude.toFixed(8); - lngDisplay.textContent = coordinatesData.longitude.toFixed(8); + latDisplay.textContent = coordinatesData.latitude.toFixed(10); + lngDisplay.textContent = coordinatesData.longitude.toFixed(10); clearBtn.style.display = "inline-flex"; } else { latDisplay.textContent = "---.------";