diff --git a/js/filter.js b/js/filter.js index 93257c6..1b78f3b 100644 --- a/js/filter.js +++ b/js/filter.js @@ -18,7 +18,7 @@ function initFilter() { console.log(`Prüfe Artikel "${articleTitle}": Karte hat '${cardCategory}' vs Dropdown '${selectedCategory}'`); if (selectedCategory === 'all' || cardCategory === selectedCategory) { - card.style.style.display = 'flex'; + card.style.display = 'flex'; console.log("-> TREFFER (wird angezeigt)"); } else { card.style.display = 'none';