diff --git a/packages/editor-ui/src/components/OutputPanel.vue b/packages/editor-ui/src/components/OutputPanel.vue index 68f13c1455..41802c9919 100644 --- a/packages/editor-ui/src/components/OutputPanel.vue +++ b/packages/editor-ui/src/components/OutputPanel.vue @@ -153,11 +153,7 @@ const hasNodeRun = computed(() => { }); const runTaskData = computed(() => { - if ( - !node.value || - workflowExecution.value === null || - workflowExecution.value.status === 'waiting' - ) { + if (!node.value || workflowExecution.value === null) { return null; } @@ -214,6 +210,16 @@ const canPinData = computed(() => { // Methods +const waitingNodeMessage = (resume: string) => { + if (resume === 'form') { + return i18n.baseText('ndv.output.waitNodeWaitingForFormSubmission'); + } + if (resume === 'webhook') { + return i18n.baseText('ndv.output.waitNodeWaitingForWebhook'); + } + return i18n.baseText('ndv.output.waitNodeWaiting'); +}; + const insertTestData = () => { if (!runDataRef.value) return; @@ -352,6 +358,13 @@ const activatePane = () => { + +