chore: fix pre-existing dotnet-format whitespace drift
Purely mechanical (object-initializer line-splitting per the project's format rules) — no behavior change. This drift on develop was blocking the pre-commit hook's solution-wide 'dotnet format --verify-no-changes' check for unrelated commits. Verified: diff is cosmetic only (spot-checked), build + all 39 tests still pass. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
@@ -42,8 +42,15 @@ public class WidgetLayoutController : ApiControllerBase
|
||||
{
|
||||
_db.WidgetLayouts.Add(new WidgetLayout
|
||||
{
|
||||
UserId = UserId, WidgetKey = dto.WidgetKey, X = dto.X, Y = dto.Y, W = dto.W, H = dto.H,
|
||||
Visible = dto.Visible, SortOrder = dto.SortOrder, SettingsJson = dto.SettingsJson
|
||||
UserId = UserId,
|
||||
WidgetKey = dto.WidgetKey,
|
||||
X = dto.X,
|
||||
Y = dto.Y,
|
||||
W = dto.W,
|
||||
H = dto.H,
|
||||
Visible = dto.Visible,
|
||||
SortOrder = dto.SortOrder,
|
||||
SettingsJson = dto.SettingsJson
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user