Skip to content

Commit

Permalink
fix seq value
Browse files Browse the repository at this point in the history
  • Loading branch information
msynk committed Dec 22, 2024
1 parent 70385d6 commit b66d04b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ protected override void BuildRenderTree(RenderTreeBuilder builder)

rf = b => { CreateCascadingValue(b, s, v.Name, v.Value, v.IsFixed, r); };

seq += v.Name.HasValue() ? 4 : 3;
seq += v.Name.HasValue() ? 5 : 4;
}

builder.AddContent(seq, rf);
Expand All @@ -50,7 +50,7 @@ protected override void BuildRenderTree(RenderTreeBuilder builder)
private void CreateCascadingValue(RenderTreeBuilder builder,
int seq,
string? name,
object? value,
object value,
bool isFixed,
RenderFragment? childContent)
{
Expand Down

0 comments on commit b66d04b

Please sign in to comment.