Debugging 4

This commit is contained in:
rirat-0
2026-06-17 19:30:11 +02:00
parent 48f2e90e49
commit d9eca06197
+1 -1
View File
@@ -6,7 +6,7 @@ function initFilter() {
if (!filterSelect || !listContainer) return;
filterSelect.addEventListener('change', function() {
const selectedCategory = this.value;
const selectedCategory = this.value.toLowerCase();
const cards = listContainer.querySelectorAll('.s-res-item');
cards.forEach(card => {