From 96e14b2b5ece1bd9b9387af9a8b0a8ab930f4d87 Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Thu, 5 Feb 2026 01:05:41 +0000 Subject: [PATCH] Update report count correctly --- rmo/template/status.html | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rmo/template/status.html b/rmo/template/status.html index a7068f97..c4f8f98f 100644 --- a/rmo/template/status.html +++ b/rmo/template/status.html @@ -53,6 +53,9 @@ function renderReports(features) { }); } report_table.reports = reports; + + const report_count = document.getElementById("report-count"); + report_count.innerHTML = reports.length + " Reports Found"; } function onLoad() { const map = document.querySelector("map-multipoint"); @@ -187,7 +190,7 @@ document.addEventListener('DOMContentLoaded', onLoad);
Reports Near You
- 15 Reports Found + - Reports Found