This commit is contained in:
2021-09-10 17:35:26 +00:00
parent da3c76f5c5
commit d2461ea32c
4 changed files with 17 additions and 14 deletions

View File

@@ -266,7 +266,7 @@ export default {
this.isTagFilter = true;
return false;
}
if (this.$store.state.globalSettings.searchCaseSensitiveOnly == true) {
if (this.$store.state.globalSettings.filterCaseSensitive == true) {
return item.name.indexOf(queryText) > -1;
} else {
//need to do a case insensitive filter and hopefully it mirrors postgres at the backend