We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 755734d commit b7f1265Copy full SHA for b7f1265
packages/editor-ui/src/utils/executionUtils.ts
@@ -130,7 +130,10 @@ export function displayForm({
130
if (node.name === destinationNode || !node.disabled) {
131
let testUrl = '';
132
if (node.type === FORM_TRIGGER_NODE_TYPE) testUrl = getTestUrl(node);
133
- if (testUrl && source !== 'RunData.ManualChatMessage') openFormPopupWindow(testUrl);
+ if (testUrl && source !== 'RunData.ManualChatMessage') {
134
+ clearPopupWindowState();
135
+ openFormPopupWindow(testUrl);
136
+ }
137
}
138
139
0 commit comments