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

This commit is contained in:
Andrew Kingston 2021-07-26 13:08:22 +01:00
parent bbcc350b14
commit 2671d02cf4
1 changed files with 1 additions and 1 deletions

View File

@ -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]) {