You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Environment (please complete the following information):
OS: Ubuntu Linux 22.04
n8n Version 0.217.2
Node.js Version 18.14.2
Operation mode own
Probable cause and proposed solution
Execution preview is run also in iframe and sends message to top window to say that it was loaded (n8nReady). It should send message to parent instead of top window.
I've changed lines 3871-3872 in file NodeView.vue to:
3871: if (window.parent) {
3872: window.parent.postMessage(
and it worked as expected, execution preview was loaded.
The text was updated successfully, but these errors were encountered:
Describe the bug
When running system in iframe of another web page the execution preview is not loaded in executions view.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
Execution preview is displayed.
Environment (please complete the following information):
Probable cause and proposed solution
Execution preview is run also in iframe and sends message to top window to say that it was loaded (n8nReady). It should send message to parent instead of top window.
I've changed lines 3871-3872 in file NodeView.vue to:
and it worked as expected, execution preview was loaded.
The text was updated successfully, but these errors were encountered: