fix: _model_to_insertion_dict missing id (#30603)

This commit is contained in:
wangxiaolei
2026-01-06 14:13:29 +08:00
committed by GitHub
parent d6e9c3310f
commit 4f74e90f51
2 changed files with 2 additions and 0 deletions

View File

@@ -679,6 +679,7 @@ def _batch_upsert_draft_variable(
def _model_to_insertion_dict(model: WorkflowDraftVariable) -> dict[str, Any]:
d: dict[str, Any] = {
"id": model.id,
"app_id": model.app_id,
"last_edited_at": None,
"node_id": model.node_id,