We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 245b6c8 + 1ec683b commit 012354fCopy full SHA for 012354f
src/components/FormSelectList.vue
@@ -423,7 +423,7 @@ export default {
423
},
424
includeFilterInPmql(pmql) {
425
if (this.filter) {
426
- const filterPmql = `${this.collectionOptions.labelField} like "%${this.filter}%"`;
+ const filterPmql = `lower(${this.collectionOptions.labelField}) like "%${this.filter.toLowerCase()}%"`;
427
if (pmql) {
428
pmql = `(${pmql}) AND ${filterPmql}`;
429
} else {
0 commit comments