1
0
mirror of https://github.com/amir20/dozzle.git synced 2025-12-26 23:21:41 +01:00

Removes lowercase

This commit is contained in:
Amir Raminfar
2021-03-26 12:48:34 -07:00
parent 0c594226b5
commit 82df2a122f

View File

@@ -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":