From 194eb4d205b78007c956995fb5b6514c45befed0 Mon Sep 17 00:00:00 2001 From: John Mizerek Date: Tue, 24 Feb 2026 12:47:20 -0800 Subject: [PATCH] Fix beacon Minor 0 not displaying in service points page b.Minor is 0 for the first beacon which is falsy in JS. Changed to null check so Minor: 0 displays correctly. Co-Authored-By: Claude Opus 4.5 --- portal/portal.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/portal/portal.js b/portal/portal.js index a15524c..bc72b4e 100644 --- a/portal/portal.js +++ b/portal/portal.js @@ -1710,7 +1710,7 @@ const Portal = { } container.innerHTML = this.beacons.map(b => { - const minorInfo = b.Minor ? ` (Minor: ${b.Minor})` : ''; + const minorInfo = b.Minor != null ? ` (Minor: ${b.Minor})` : ''; return `