1
0
mirror of synced 2025-12-19 17:48:10 -05:00

fix regex filter

This commit is contained in:
Marc Foley
2025-06-09 15:25:22 +01:00
parent 13d534e693
commit 1ec24ec99d

View File

@@ -448,6 +448,11 @@ function axesCombos(axes) {
}
filtered.sort(sortFunc);
if (this.tagFilter !== "") {
const myRegex = new RegExp(this.tagFilter, "i");
filtered = filtered.filter(family => myRegex.test(family.displayName));
}
if (this.reverseTags) {
filtered.reverse();