Run npm audit

This commit is contained in:
thiloho
2025-05-04 16:36:51 +02:00
parent ea74927b65
commit dad5a26942
2 changed files with 5 additions and 5 deletions

View File

@@ -74,10 +74,10 @@ const sortedArticles = allArticles.sort((a, b) => {
);
if (matchesSearch) {
(article as HTMLElement).classList.remove("hidden");
article.classList.remove("hidden");
hasResults = true;
} else {
(article as HTMLElement).classList.add("hidden");
article.classList.add("hidden");
}
}