mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-20 11:22:15 +00:00
fix(editor): Fix polling trigger check for runData (#6130)
🐛 Fix polling trigger check for `runData`
This commit is contained in:
@@ -458,7 +458,7 @@ export const pushConnection = mixins(
|
|||||||
execution.data.resultData &&
|
execution.data.resultData &&
|
||||||
execution.data.resultData.runData &&
|
execution.data.resultData.runData &&
|
||||||
execution.data.resultData.runData[execution.executedNode];
|
execution.data.resultData.runData[execution.executedNode];
|
||||||
if (node && nodeType && !nodeOutput) {
|
if (nodeType && nodeType.polling && !nodeOutput) {
|
||||||
this.$showMessage({
|
this.$showMessage({
|
||||||
title: this.$locale.baseText('pushConnection.pollingNode.dataNotFound', {
|
title: this.$locale.baseText('pushConnection.pollingNode.dataNotFound', {
|
||||||
interpolate: {
|
interpolate: {
|
||||||
|
|||||||
Reference in New Issue
Block a user