fix(editor): Show execution error toast also if there is no error stack just message (#9526)

This commit is contained in:
Csaba Tuncsik
2024-05-29 14:57:01 +02:00
committed by GitHub
parent 6698179a69
commit f914c97d11
4 changed files with 115 additions and 3 deletions

View File

@@ -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 &&