From 8892511f10f85fa40ebb355481ec262173515655 Mon Sep 17 00:00:00 2001 From: yuliang_guo Date: Tue, 3 Feb 2026 15:00:54 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=90=8E=E7=AB=AF=E4=BF=9D=E5=AD=98?= =?UTF-8?q?=E5=92=8C=E8=BF=94=E5=9B=9E=E8=8A=82=E7=82=B9=E4=BD=8D=E7=BD=AE?= =?UTF-8?q?=E5=9D=90=E6=A0=87(position=5Fx,=20position=5Fy)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Cursor --- backend/app/services/growth_path_service.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/backend/app/services/growth_path_service.py b/backend/app/services/growth_path_service.py index 5f16dd0..6bd871b 100644 --- a/backend/app/services/growth_path_service.py +++ b/backend/app/services/growth_path_service.py @@ -95,6 +95,8 @@ class GrowthPathService: is_required=node_data.is_required, prerequisites=node_data.prerequisites, estimated_days=node_data.estimated_days, + position_x=node_data.position_x, + position_y=node_data.position_y, ) db.add(node) @@ -147,6 +149,8 @@ class GrowthPathService: is_required=node_data.is_required, prerequisites=node_data.prerequisites, estimated_days=node_data.estimated_days, + position_x=node_data.position_x, + position_y=node_data.position_y, ) db.add(node) @@ -222,6 +226,8 @@ class GrowthPathService: "is_required": node.is_required, "prerequisites": node.prerequisites, "estimated_days": node.estimated_days, + "position_x": node.position_x, + "position_y": node.position_y, "created_at": node.created_at, "updated_at": node.updated_at, })