From 892d74a24dbf17319312880dc5250a27902a02c7 Mon Sep 17 00:00:00 2001 From: Bertrand Benjamin Date: Mon, 21 Jan 2019 10:59:52 +0100 Subject: [PATCH] Fix(store): fix bad caracter --- src/store/modules/datas.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/store/modules/datas.js b/src/store/modules/datas.js index 92cab95..bc02e0d 100644 --- a/src/store/modules/datas.js +++ b/src/store/modules/datas.js @@ -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 => {