[O] Filter more levels

This commit is contained in:
Hykilpikonna
2020-04-12 15:05:09 -04:00
parent b84dd14ced
commit 5631ea2ac3
@@ -86,7 +86,7 @@
return this.courseInfo.filter(c =>
c.name.toLowerCase().includes(this.search) &&
c.level !== 'Club' &&
c.level != null && c.level !== 'Club' && c.level !== 'Sport' && c.level !== 'None' &&
c.year == year);
}