mirror of
https://github.com/amir20/dozzle.git
synced 2025-12-26 23:21:41 +01:00
Removes lowercase
This commit is contained in:
@@ -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":
|
||||
|
||||
Reference in New Issue
Block a user