Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-strecker-sonarsource committed Jan 2, 2024
1 parent d175d2b commit aa91306
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions ProtoBufViewer.Blazor/Pages/Index.razor
Original file line number Diff line number Diff line change
Expand Up @@ -91,10 +91,11 @@
</ButtonTemplate>
</MudFileUpload>
}
<VirtualTreeView T="ProtoType" Items="TypedMessages" ChildrenSelector="x => x switch {
TypedMessage message => message.Fields,
TypedField { Value: TypedMessage message } => message.Fields,
_ => []
<VirtualTreeView T="ProtoType" Items="TypedMessages" ChildrenSelector="x => x switch
{
TypedMessage message => message.Fields,
TypedField { Value: TypedMessage message } => message.Fields,
_ => [],
}">
<ItemTemplate>
@switch (context)
Expand Down

0 comments on commit aa91306

Please sign in to comment.