Remove ticks in chain input documentation (#38109)

The ticks created a literal string instead of actually accessing the
payload value.
This commit is contained in:
Alexander Reelsen 2019-02-11 13:03:49 +03:00
parent 8c624e5a20
commit 73fcea4d2c
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ still be available in its original form in `ctx.payload.first`.
{
"second" : {
"transform" : {
"script" : "return [ 'path' : 'ctx.payload.first.path' + '/' ]"
"script" : "return [ 'path' : ctx.payload.first.path + '/' ]"
}
}
},