fix(editor): fix broken output panel for wait node executions (#4156)

This commit is contained in:
Mutasem Aldmour
2022-09-21 11:51:20 +02:00
committed by GitHub
parent e2cdb2e5d7
commit 40ebbeaefc
8 changed files with 14 additions and 11 deletions

View File

@@ -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;
}