Skip to content

Commit

Permalink
🐛 fix: Additional closing parenthesis
Browse files Browse the repository at this point in the history
  • Loading branch information
capdiem committed Jun 18, 2024
1 parent 8ad0262 commit 96f89e3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Masa.Blazor/Components/DataFilter/PDataFilter.razor
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
OnFieldChanged="@OnFieldChanged"
@ref="_inputsFilter">
<div class="@_block.Element("high-frequency")">
<div class="@GetClass(_block.Element("high-frequency-inputs").Name, _expanded ? "hidden" : null))">
<div class="@GetClass(_block.Element("high-frequency-inputs").Name, _expanded ? "hidden" : null)">
@HighFrequencyContent
</div>
<MSpacer/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
styleBuilder.Add("width", Math.Max(0, NormalizedBuffer - NormalizedValue) + "%");
styleBuilder.AddBackgroundColor(computedColor);

<div class="@GetClass(_block.Element("background").ToString(), CssClassUtils.GetBackgroundColor(computedColor)))"
<div class="@GetClass(_block.Element("background").ToString(), CssClassUtils.GetBackgroundColor(computedColor))"
style="@styleBuilder.Build()">
</div>
};
Expand Down Expand Up @@ -82,7 +82,7 @@

private RenderFragment GenDeterminate() => __builder =>
{
<div class="@GetClass(_block.Element("determinate").ToString(), CssClassUtils.GetBackgroundColor(Color)))"
<div class="@GetClass(_block.Element("determinate").ToString(), CssClassUtils.GetBackgroundColor(Color))"
style="@(StyleBuilder.Create().Add("width", NormalizedValue + "%").AddBackgroundColor(Color))">
</div>
};
Expand Down

0 comments on commit 96f89e3

Please sign in to comment.