Fix broken list filtering on the grid
This commit is contained in:
parent
43736f47de
commit
70c74c84ea
@ -112,7 +112,7 @@ class BrickGridFilter {
|
||||
} else {
|
||||
// List search
|
||||
for (const list of this.search_list) {
|
||||
if (set.startsWith(this.search_list)) {
|
||||
if (set.startsWith(list)) {
|
||||
if (current.dataset[set].includes(options.search)) {
|
||||
current.parentElement.classList.remove("d-none");
|
||||
return;
|
||||
|
Loading…
Reference in New Issue
Block a user