We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b0532d commit cd88279Copy full SHA for cd88279
apps/sim/executor/execution/block-executor.ts
@@ -428,7 +428,7 @@ export class BlockExecutor {
428
block: SerializedBlock,
429
executionOrder: number
430
): void {
431
- const blockId = node.id
+ const blockId = node.metadata?.originalBlockId ?? node.id
432
const blockName = block.metadata?.name ?? blockId
433
const blockType = block.metadata?.id ?? DEFAULTS.BLOCK_TYPE
434
@@ -456,7 +456,7 @@ export class BlockExecutor {
456
executionOrder: number,
457
endedAt: string
458
459
460
461
462
0 commit comments