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 conditions?.map(condition => {
|
||||||
return {
|
return {
|
||||||
...condition,
|
...condition,
|
||||||
referenceValue: processStringSync(condition.referenceValue, context),
|
referenceValue: processStringSync(
|
||||||
|
condition.referenceValue || "",
|
||||||
|
context
|
||||||
|
),
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue