Outerbridgeio / Outerbridge

Outerbridge is a low code/no code workflow automation application, focusing on integrating both on-chain and off-chain applications.
https://outerbridge.io
Apache License 2.0
170 stars 58 forks source link

Fix code input string parse error #136

Closed HenryHengZJ closed 1 year ago

HenryHengZJ commented 1 year ago

When variable (i.e: {{node[0].data.var}}) is used on code parameter of NodeJS node, it is not parsed correctly.

For example: const example = {{node[0].data.var}}

Parsed value: const example = some var

Expected: const example = "some var"