aboutsummaryrefslogtreecommitdiff
path: root/src/components/SearchModal.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/SearchModal.vue')
-rw-r--r--src/components/SearchModal.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/SearchModal.vue b/src/components/SearchModal.vue
index 9dc8f9b..025ed71 100644
--- a/src/components/SearchModal.vue
+++ b/src/components/SearchModal.vue
@@ -92,7 +92,7 @@ export default defineComponent({
},
suggDisplayStrings(): [string, string, string][] {
let result: [string, string, string][] = [];
- let input = this.suggsInput;
+ let input = this.suggsInput.toLowerCase();
// For each SearchSugg
for (let sugg of this.searchSuggs){
let idx = sugg.name.indexOf(input);