remove space

Co-authored-by: Sam Rose <hello@samwho.dev>
This commit is contained in:
Peter Clement 2024-09-27 10:05:05 +01:00 committed by GitHub
parent acdcd02fcd
commit f03ed03794
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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
})