1
0
Fork 0
mirror of synced 2024-09-02 18:51:36 +12:00

fix issue with date range filtering in automations

This commit is contained in:
Peter Clement 2022-09-13 17:11:37 +01:00
parent 3059e00c77
commit f38856431d

View file

@ -108,7 +108,7 @@ export const buildLuceneQuery = filter => {
query.allOr = true query.allOr = true
return return
} }
if (type === "datetime") { if (type === "datetime" && !isHbs) {
// Ensure date value is a valid date and parse into correct format // Ensure date value is a valid date and parse into correct format
if (!value) { if (!value) {
return return
@ -218,6 +218,7 @@ export const runLuceneQuery = (docs, query) => {
// Process a range match // Process a range match
const rangeMatch = match("range", (docValue, testValue) => { const rangeMatch = match("range", (docValue, testValue) => {
console.log("test")
return ( return (
docValue == null || docValue == null ||
docValue === "" || docValue === "" ||