Skip to content

Commit 9abd346

Browse files
ArgoZhangadminyr
andauthored
fix(NavigateToExtensions): not work NavigateTo extension method (dotnetcore#6026)
* fix: 修复 TabItemTextOptions 设置文本失败问题 * chore: bump version 9.6.2 Co-Authored-By: adminyr <[email protected]> --------- Co-authored-by: adminyr <[email protected]>
1 parent 44c3b45 commit 9abd346

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/BootstrapBlazor/BootstrapBlazor.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk.Razor">
22

33
<PropertyGroup>
4-
<Version>9.6.2-beta06</Version>
4+
<Version>9.6.2</Version>
55
</PropertyGroup>
66

77
<ItemGroup>

src/BootstrapBlazor/Components/Menu/Menu.razor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ protected override void OnParametersSet()
133133
InitMenus(null, Items, GetUrl());
134134
if (!DisableNavigation)
135135
{
136-
Options.Text = ActiveMenu?.Text;
136+
Options.Text ??= ActiveMenu?.Text;
137137
Options.Icon = ActiveMenu?.Icon;
138138
Options.IsActive = true;
139139
}

0 commit comments

Comments
 (0)