Fix(store): fix bad caracter

This commit is contained in:
Bertrand Benjamin 2019-01-21 10:59:52 +01:00
parent 69ccd54fff
commit 892d74a24d
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ export default {
if (invert) {
return tags.some(t => {
return row.tags.map(t => t.name.toLowerCase())
.ÿEindexOf(t.toLowerCase()) < 0
.indexOf(t.toLowerCase()) < 0
})
} else {
return tags.every(t => {