Skip to content

Commit

Permalink
fix: search should not be case sensitive
Browse files Browse the repository at this point in the history
fix #271
  • Loading branch information
Tsuk1ko committed Jun 10, 2024
1 parent 19b9435 commit 45a9b9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/RIIC.vue
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ export default defineComponent({
nameFilterInput: '',
nameFilter: '',
updateNameFilter: _.debounce(function (val) {
this.nameFilter = val;
this.nameFilter = this.$root.pureName(val);
}, 500),
}),
watch: {
Expand Down

0 comments on commit 45a9b9e

Please sign in to comment.