Skip to content

Commit

Permalink
Fix broken search box!
Browse files Browse the repository at this point in the history
  • Loading branch information
username0136 authored Nov 13, 2022
1 parent a32571f commit 965df23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion public/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ ws.onmessage = (msg) => {

Array.from(document.getElementsByClassName('patchName'))
.filter((x) => x.innerText.toLowerCase().includes(searchText))
.forEach((x) => (x.parentNode.parentNode.style.display = 'flex'));
.forEach((x) => (x.parentNode.parentNode.parentNode.style.display = 'flex'));
});

Array.from(document.getElementsByClassName('select'))
Expand Down

0 comments on commit 965df23

Please sign in to comment.