From 099dc14d5ff9784ab0e13baffa39e96062296ac8 Mon Sep 17 00:00:00 2001 From: overcuriousity Date: Sat, 19 Jul 2025 01:25:49 +0200 Subject: [PATCH] bugfix --- src/components/ToolFilters.astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ToolFilters.astro b/src/components/ToolFilters.astro index c26ecaf..99f6d6a 100644 --- a/src/components/ToolFilters.astro +++ b/src/components/ToolFilters.astro @@ -330,7 +330,7 @@ const sortedTags = Object.entries(tagFrequency) } // Tag filter - if (selectedTags.size > 0 && !Array.from(selectedTags).some(tag => tags.includes(tag))) { + if (selectedTags.size > 0 && !Array.from(selectedTags).every(tag => tags.includes(tag))) { return false; }