add back space

This commit is contained in:
Peter Clement 2024-09-27 10:21:52 +01:00
parent 9e8a6f85f6
commit 5ef0e48ee0
1 changed files with 1 additions and 1 deletions

View File

@ -516,7 +516,7 @@ class Orchestrator {
filter => {
Object.entries(filter).forEach(([_, value]) => {
Object.entries(value).forEach(([field, _]) => {
const updatedField = field.replace("{{", "{{ literal")
const updatedField = field.replace("{{", "{{ literal ")
const fromContext = processStringSync(updatedField, this.context)
toFilter[field] = fromContext
})