mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
fix(editor): fix broken output panel for wait node executions (#4156)
This commit is contained in:
@@ -261,7 +261,7 @@ export default mixins(
|
||||
if (this.workflowExecution === null) {
|
||||
return null;
|
||||
}
|
||||
const executionData: IRunExecutionData = this.workflowExecution.data;
|
||||
const executionData: IRunExecutionData | undefined = this.workflowExecution.data;
|
||||
if (executionData && executionData.resultData) {
|
||||
return executionData.resultData.runData;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user