mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
fix(editor): Show execution error toast also if there is no error stack just message (#9526)
This commit is contained in:
@@ -14,7 +14,8 @@
|
||||
[$style.openNDV]: nodeViewDetailsOpened,
|
||||
[$style.show]: showPreview,
|
||||
}"
|
||||
:src="`${rootStore.baseUrl}workflows/demo`"
|
||||
:src="iframeSrc"
|
||||
data-test-id="workflow-preview-iframe"
|
||||
@mouseenter="onMouseEnter"
|
||||
@mouseleave="onMouseLeave"
|
||||
/>
|
||||
@@ -65,6 +66,10 @@ const insideIframe = ref(false);
|
||||
const scrollX = ref(0);
|
||||
const scrollY = ref(0);
|
||||
|
||||
const iframeSrc = computed(() => {
|
||||
return `${window.BASE_PATH ?? '/'}workflows/demo`;
|
||||
});
|
||||
|
||||
const showPreview = computed(() => {
|
||||
return (
|
||||
!props.loading &&
|
||||
|
||||
Reference in New Issue
Block a user