Skip to content

Commit

Permalink
Simplified MudChip
Browse files Browse the repository at this point in the history
  • Loading branch information
bpmerkel committed Aug 25, 2024
1 parent be6fb32 commit 009b858
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Client/Pages/Index.razor
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
<MudChipSet T="Tag" MultiSelection="true" Filter="true" @bind-SelectedChips="selected">
@foreach (var tag in area.Tags)
{
<MudChip T="Tag" Text="@tag.Text" Variant="Variant.Text" Color="Color.Warning" Size="@(fontSize == null ? Size.Large : fontSize == true ? Size.Small : Size.Medium)">@tag.Text (@tag.Count)</MudChip>
<MudChip T="Tag" Variant="Variant.Text" Color="Color.Warning" Size="@(fontSize == null ? Size.Large : fontSize == true ? Size.Small : Size.Medium)">@tag.Text (@tag.Count)</MudChip>
}
</MudChipSet>
<MudText Typo="@(fontSize == null ? Typo.h5 : fontSize == true ? Typo.body1 : Typo.h6)" GutterBottom="false" Inline="true">
Expand Down

0 comments on commit 009b858

Please sign in to comment.