#9184 case insensitive search (#9190)

This commit is contained in:
Aivan Monceller
2017-10-16 01:12:30 +08:00
committed by Sabe Jones
parent e28c214696
commit ca81ff5af6

View File

@@ -368,7 +368,7 @@ export default {
},
watch: {
searchText: throttle(function throttleSearch () {
this.searchTextThrottled = this.searchText;
this.searchTextThrottled = this.searchText.toLowerCase();
}, 250),
},
methods: {