Browse Source

Fix crash when building lucene query with a bool value already as a bool type

pull/4023/head
Andrew Kingston 5 years ago
parent
commit
06e5a038f2
  1. 2
      packages/standard-components/src/lucene.js

2
packages/standard-components/src/lucene.js

@ -23,7 +23,7 @@ export const buildLuceneQuery = filter => {
value = parseFloat(value)
}
if (type === "boolean") {
value = value?.toLowerCase() === "true"
value = `${value}`?.toLowerCase() === "true"
}
if (operator.startsWith("range")) {
if (!query.range[field]) {

Loading…
Cancel
Save