diff --git a/src/frontend/src/utils/reactflowUtils.ts b/src/frontend/src/utils/reactflowUtils.ts index b50c6d05a..75314b274 100644 --- a/src/frontend/src/utils/reactflowUtils.ts +++ b/src/frontend/src/utils/reactflowUtils.ts @@ -743,7 +743,7 @@ function updateGroupNodeTemplate(template: APITemplateType) { template[key].advanced = true; } //prevent code fields from showing on the group node - if (type === "code") { + if (type === "code" && key === "code") { template[key].show = false; } });