Skip to content

Commit

Permalink
fix: 修复任务未执行节点预览时免渲染表单项中变量仍被渲染问题 #7358
Browse files Browse the repository at this point in the history
  • Loading branch information
lTimej committed May 29, 2024
1 parent 5ba4a45 commit 9c18178
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gcloud/tasktmpl3/domains/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ def get_need_render_context_keys():
{
"${%s}" % key
for key, val in pipeline["activities"].get(node_id, {}).get("component", {}).get("inputs", {}).items()
if not val.get("need_render")
if val.get("need_render") is False
}
)

Expand Down

0 comments on commit 9c18178

Please sign in to comment.