Skip to content

Commit 9383e28

Browse files
committed
fix: Org search filter bug
1 parent a54cd68 commit 9383e28

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

organizations.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ <h3>
9090
const hasDatasets = org.dataset.hasDatasets === "true";
9191
const isVisible = matchesSearch && (includeEmptyOrgs || hasDatasets);
9292

93-
org.hidden = !isVisible;
93+
org.classList.toggle("d-none", !isVisible);
9494

9595
if (isVisible) {
9696
orgShownCount++;

0 commit comments

Comments
 (0)