mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
🐛 Fix issue with no incoming data
This commit is contained in:
parent
0f1b8779e4
commit
b9abf5c57b
|
@ -178,7 +178,7 @@ export default mixins(
|
|||
|
||||
const baseKeys = ['$env', '$executionId', '$mode', '$parameter', '$position', '$resumeWebhookUrl', '$workflow'];
|
||||
const additionalKeys = ['$json', '$binary'];
|
||||
if (executedWorkflow) {
|
||||
if (executedWorkflow && connectionInputData) {
|
||||
baseKeys.push(...additionalKeys);
|
||||
} else {
|
||||
additionalKeys.forEach(key => {
|
||||
|
|
Loading…
Reference in a new issue