mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
fix(editor): Fix polling trigger check for runData
(#6130)
🐛 Fix polling trigger check for `runData`
This commit is contained in:
parent
6eed763f23
commit
80831cd7c6
|
@ -458,7 +458,7 @@ export const pushConnection = mixins(
|
|||
execution.data.resultData &&
|
||||
execution.data.resultData.runData &&
|
||||
execution.data.resultData.runData[execution.executedNode];
|
||||
if (node && nodeType && !nodeOutput) {
|
||||
if (nodeType && nodeType.polling && !nodeOutput) {
|
||||
this.$showMessage({
|
||||
title: this.$locale.baseText('pushConnection.pollingNode.dataNotFound', {
|
||||
interpolate: {
|
||||
|
|
Loading…
Reference in a new issue