From 3edd40de0d5eca1418296f1f7f3127854f9d59a6 Mon Sep 17 00:00:00 2001 From: Smittix Date: Wed, 21 Jan 2026 10:45:05 +0000 Subject: [PATCH] Fix 433MHz sensor cards not displaying The updateCounts call was using pager-specific filter logic that didn't match sensor card data attributes, causing cards to be hidden. Now uses the sensor filter bar's own applyFilters method. Co-Authored-By: Claude Opus 4.5 --- templates/index.html | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/templates/index.html b/templates/index.html index 0155021..5db7167 100644 --- a/templates/index.html +++ b/templates/index.html @@ -2352,8 +2352,11 @@ }); } - // Update filter counts - SignalCards.updateCounts(output); + // Update filter counts using sensor-specific filter bar + const sensorFilterBar = document.getElementById('sensorFilterBar'); + if (sensorFilterBar && sensorFilterBar.applyFilters) { + sensorFilterBar.applyFilters(); + } if (autoScroll) output.scrollTop = 0;