Skip to content

Commit b7d67ba

Browse files
committed
Merge branch 'main' into doc-layoutsplitebar
# Conflicts: # src/BootstrapBlazor/BootstrapBlazor.csproj
2 parents 9f67f23 + 10f7564 commit b7d67ba

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

.github/ISSUE_TEMPLATE/20_feature_request.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ body:
1818
description: A clear and concise description of what the problem is.
1919
placeholder: I am trying to do [...] but [...]
2020
validations:
21-
required: false
21+
required: true
2222
- type: textarea
2323
attributes:
2424
label: Describe the solution you'd like
2525
description: |
2626
A clear and concise description of what you want to happen. Include any alternative solutions you've considered.
2727
validations:
28-
required: true
28+
required: false
2929
- type: textarea
3030
attributes:
3131
label: Additional context

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.3.1-beta35</Version>
4+
<Version>9.3.1-beta36</Version>
55
</PropertyGroup>
66

77
<ItemGroup>

src/BootstrapBlazor/Components/Redirect/Redirect.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,9 @@ public class Redirect : ComponentBase
2828
public bool ForceLoad { get; set; } = true;
2929

3030
/// <summary>
31-
/// OnAfterRender 方法
31+
/// OnInitialized 方法
3232
/// </summary>
33-
/// <param name="firstRender"></param>
34-
protected override void OnAfterRender(bool firstRender)
33+
protected override void OnInitialized()
3534
{
3635
Navigation.NavigateTo(Url, ForceLoad);
3736
}

0 commit comments

Comments
 (0)