Fix crash when adding conditions with no values
This commit is contained in:
parent
ce3d18972f
commit
2b4d817c63
|
@ -122,7 +122,10 @@
|
|||
return conditions?.map(condition => {
|
||||
return {
|
||||
...condition,
|
||||
referenceValue: processStringSync(condition.referenceValue, context),
|
||||
referenceValue: processStringSync(
|
||||
condition.referenceValue || "",
|
||||
context
|
||||
),
|
||||
}
|
||||
})
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue