From ef9b6252080ee7d663425570b01480f4ab099735 Mon Sep 17 00:00:00 2001 From: filtered <176114999+webfiltered@users.noreply.github.com> Date: Fri, 11 Jul 2025 19:27:31 +1000 Subject: [PATCH] Fix DTO return type to allow clean test/merge (#4426) --- src/utils/executableGroupNodeChildDTO.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/executableGroupNodeChildDTO.ts b/src/utils/executableGroupNodeChildDTO.ts index 1832adfdd8..1250874caf 100644 --- a/src/utils/executableGroupNodeChildDTO.ts +++ b/src/utils/executableGroupNodeChildDTO.ts @@ -46,7 +46,7 @@ export class ExecutableGroupNodeChildDTO extends ExecutableNodeDTO { return { node: inputNodeDto, - origin_id: inputNode.id, + origin_id: String(inputNode.id), origin_slot: link.origin_slot } }