Fix code field visibility in group node template
This commit is contained in:
parent
b1e7485ec6
commit
8f8b921ead
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue