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

@@ -62,7 +62,7 @@ export default mixins(
const executionData = this.$store.getters.getWorkflowExecution as IExecutionResponse | null;
let runExecutionData: IRunExecutionData;
if (executionData === null) {
if (!executionData || !executionData.data) {
runExecutionData = {
resultData: {
runData: {},