fix(editor): Send only execution id in postMessage when previewing an execution (#9514)
This commit is contained in:
@@ -4765,7 +4765,9 @@ export default defineComponent({
|
||||
});
|
||||
}
|
||||
} else if (json?.command === 'setActiveExecution') {
|
||||
this.executionsStore.activeExecution = json.execution;
|
||||
this.executionsStore.activeExecution = (await this.executionsStore.fetchExecution(
|
||||
json.executionId,
|
||||
)) as ExecutionSummary;
|
||||
}
|
||||
} catch (e) {}
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user