Skip to content

Commit

Permalink
fix(editor): Fix polling trigger check for runData (#6130)
Browse files Browse the repository at this point in the history
🐛 Fix polling trigger check for `runData`
  • Loading branch information
ivov authored and netroy committed May 15, 2023
1 parent 336172c commit 7718c18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/editor-ui/src/mixins/pushConnection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down

0 comments on commit 7718c18

Please sign in to comment.