Skip to content

Commit

Permalink
Fix search caps
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinsOnuoha committed Dec 30, 2022
1 parent 87adc33 commit 3c7fe18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const state = reactive({
})
const filter = (e) => {
state.DB = DB.filter(x => x.name.includes(e.target.value))
state.DB = DB.filter(x => x.name.toLowerCase().includes(e.target.value.toLowerCase()))
}
</script>

Expand Down

0 comments on commit 3c7fe18

Please sign in to comment.