Skip to content

Commit

Permalink
Update MudBlazor
Browse files Browse the repository at this point in the history
  • Loading branch information
codemonkey85 committed Jul 18, 2024
1 parent 5735b22 commit acc65f5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion AboutMe/Wasm/AboutMe.Wasm.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="8.0.7" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="8.0.7" PrivateAssets="all" />
<PackageReference Include="MudBlazor" Version="6.19.1" />
<PackageReference Include="MudBlazor" Version="7.3.0" />
</ItemGroup>

</Project>
3 changes: 2 additions & 1 deletion AboutMe/Wasm/Layout/MainLayout.razor
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

<MudThemeProvider @ref="@mudThemeProvider"
@bind-IsDarkMode="@isDarkMode" />
<MudPopoverProvider/>
<MudDialogProvider />
<MudSnackbarProvider />

Expand Down Expand Up @@ -38,7 +39,7 @@
Icon="@Icons.Custom.Brands.GitHub"
Href="@($"{Constants.MyGitHubBaseUrl}/aboutme")"
Target="_blank"
Title="Source code on GitHub"
title="Source code on GitHub"
Color="@Color.Inherit"
Variant="@Variant.Outlined" />
</MudStack>
Expand Down
5 changes: 3 additions & 2 deletions AboutMe/Wasm/Pages/Resume.razor
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
Color="@Color.Default"
Size="@Size.Small"
Icon="@Icons.Material.Filled.Clear"
Title="Clear Selection" />
title="Clear Selection" />
}
</MudStack>
@SkillsFragment(resumeModel.Skills)
Expand Down Expand Up @@ -123,7 +123,8 @@
@foreach (var skill in skills.OrderBy(skill => skill.Name))
{
<MudItem>
<MudChip title="@skill.Name"
<MudChip T="string"
title="@skill.Name"
OnClick="@(() => OnSelectSkill(skill))"
Color="@GetSkillColor(skill)">
@skill.Name
Expand Down

0 comments on commit acc65f5

Please sign in to comment.