From e54ebb8227c2399e7db49dc9d778cabcf1aeca0e Mon Sep 17 00:00:00 2001 From: Linghong Date: Thu, 20 Aug 2026 12:29:26 +0000 Subject: [PATCH] =?UTF-8?q?=E8=A1=A5=E9=BD=90=20master=20=E5=B8=A6?= =?UTF-8?q?=E5=85=A5=E4=BB=A3=E7=A0=81=E7=9A=84=20rustfmt=20=E8=BE=93?= =?UTF-8?q?=E5=87=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 合并 master 后 cargo fmt --check 在 ui_editor/layout/node.rs 报差异(枚举变体的 行尾注释未对齐)。只是 rustfmt 的既定输出,无语义变化。 Co-Authored-By: Claude Opus 5 --- .../src-tauri/src/ui_editor/layout/node.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/ai-game-creator-shell/src-tauri/src/ui_editor/layout/node.rs b/apps/ai-game-creator-shell/src-tauri/src/ui_editor/layout/node.rs index bd9fc0443..9375e913f 100644 --- a/apps/ai-game-creator-shell/src-tauri/src/ui_editor/layout/node.rs +++ b/apps/ai-game-creator-shell/src-tauri/src/ui_editor/layout/node.rs @@ -29,7 +29,7 @@ pub enum NodeSource { pub enum StageStatus { NoProblem, NeedReview(String), // reason inside - Blocked(String), // reason inside + Blocked(String), // reason inside } #[cfg(test)]