We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e3b593 commit a1b098cCopy full SHA for a1b098c
webroot/js/filter.js
@@ -86,7 +86,8 @@ function filterRows() {
86
87
if (filter) {
88
var table = document.querySelector("table.filterable");
89
- var rows = Array.from(table.querySelectorAll(":scope > tr:nth-child(n+2)"));
+ var tbody = table.querySelector("tbody");
90
+ var rows = Array.from(tbody.querySelectorAll(":scope > tr:nth-child(n+2)"));
91
var column = table.querySelector("th#" + filter).cellIndex;
92
rows.forEach(function (row) {
93
if (
0 commit comments