From 30d8bcf9733d7242f50d0cdd9df718f1a7f40211 Mon Sep 17 00:00:00 2001 From: Szymon Porwolik Date: Tue, 18 Nov 2025 23:16:21 +0100 Subject: [PATCH] Fix for applyFilters --- assets/js/sections/bandmap_list.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/assets/js/sections/bandmap_list.js b/assets/js/sections/bandmap_list.js index fb4353509..97da74ba7 100644 --- a/assets/js/sections/bandmap_list.js +++ b/assets/js/sections/bandmap_list.js @@ -359,6 +359,9 @@ $(function() { if (selectId === 'band' || selectId === 'mode' || selectId === 'decontSelect' || selectId === 'continentSelect') { syncQuickFilterButtons(); } + + // Apply filters when select changes + applyFilters(false); }); } @@ -382,6 +385,9 @@ $(function() { $(this).val(currentValues); updateFilterIcon(); + + // Apply filters when requiredFlags changes + applyFilters(false); }); // ========================================