mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-12 13:27:31 -08:00
fix(Code Node): Replace tab character with spaces in placeholder (no-changelog) (#9577)
This commit is contained in:
parent
6268276746
commit
f50c73a3cb
|
@ -56,7 +56,7 @@ return $input.item;`.trim(),
|
|||
runOnceForAllItems: `
|
||||
# Loop over input items and add a new field called 'myNewField' to the JSON of each one
|
||||
for item in _input.all():
|
||||
item.json.myNewField = 1
|
||||
item.json.myNewField = 1
|
||||
return _input.all()`.trim(),
|
||||
runOnceForEachItem: `
|
||||
# Add a new field called 'myNewField' to the JSON of the item
|
||||
|
|
Loading…
Reference in a new issue