Fix: only parse custom field queries when valid

This commit is contained in:
shamoon 2025-03-12 17:03:19 -07:00
parent 4ef5fbfb6e
commit 9f39e2ce0c
No known key found for this signature in database

View File

@ -872,7 +872,7 @@ export class FilterEditorComponent
let queries = this.customFieldQueriesModel.queries.map((query) =>
query.serialize()
)
if (queries.length > 0) {
if (queries.length > 0 && this.customFieldQueriesModel.isValid()) {
filterRules.push({
rule_type: FILTER_CUSTOM_FIELDS_QUERY,
value: JSON.stringify(queries[0]),