From 82df2a122fbd40f9ec5796c3d37dc75c2824082f Mon Sep 17 00:00:00 2001 From: Amir Raminfar Date: Fri, 26 Mar 2021 12:48:34 -0700 Subject: [PATCH] Removes lowercase --- assets/pages/Index.vue | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/assets/pages/Index.vue b/assets/pages/Index.vue index 26777792..45a684fc 100644 --- a/assets/pages/Index.vue +++ b/assets/pages/Index.vue @@ -107,8 +107,7 @@ export default { }, results() { if (this.search) { - const term = this.search.toLowerCase(); - return fuzzysort.go(term, this.allContainers, { key: "name" }).map((i) => i.obj); + return fuzzysort.go(this.search, this.allContainers, { key: "name" }).map((i) => i.obj); } switch (this.sort) { case "all":