mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
fix(editor): fix broken output panel for wait node executions (#4156)
This commit is contained in:
@@ -142,7 +142,10 @@ 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 || !executionData.resultData.runData) {
|
||||
return null;
|
||||
}
|
||||
return executionData.resultData.runData;
|
||||
},
|
||||
hasNodeRun(): boolean {
|
||||
|
||||
Reference in New Issue
Block a user