From 57764a46b4cc6779897e14e03e78a1ed32610fa3 Mon Sep 17 00:00:00 2001 From: Ian Renton Date: Sun, 12 Oct 2025 17:43:40 +0100 Subject: [PATCH] Fix escaping issue #19 --- webassets/js/spots.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webassets/js/spots.js b/webassets/js/spots.js index bff15f0..be8607e 100644 --- a/webassets/js/spots.js +++ b/webassets/js/spots.js @@ -139,7 +139,7 @@ function updateTable() { bearingText = bearing.toFixed(0).padStart(3, '0') + "°"; if (s["location_good"] == null || s["location_good"] == false) { if (s["location_source"] == "QRZ") { - bearingText = bearingText + ""; + bearingText = bearingText + ""; } else { bearingText = bearingText + ""; }