Skip to content

Commit

Permalink
🐛 fix: Additional closing parenthesis (#1973)
Browse files Browse the repository at this point in the history
  • Loading branch information
capdiem authored Jun 18, 2024
1 parent 8ad0262 commit b51a9e0
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
@@ -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/>
Original file line number Diff line number Diff line change
@@ -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>
};
@@ -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>
};

0 comments on commit b51a9e0

Please sign in to comment.