Skip to content

Commit 258c546

Browse files
fix(EditorForm): add IsFixed parameter prevent trigger OnParameterSet (#7324)
* fix(EditorForm): add IsFixed parameter * chore: bump version 10.1.3 * chore: bump version 10.1.3-beta01 Co-Authored-By: Tony-ST0754 <244411587+tony-st0754@users.noreply.github.com> * Revert "chore: bump version 10.1.3-beta01" This reverts commit a41d194. --------- Co-authored-by: Tony-ST0754 <244411587+tony-st0754@users.noreply.github.com>
1 parent dbae1d0 commit 258c546

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

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>10.1.4-beta05</Version>
4+
<Version>10.1.3</Version>
55
</PropertyGroup>
66

77
<ItemGroup>

src/BootstrapBlazor/Components/EditorForm/EditorForm.razor

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@namespace BootstrapBlazor.Components
1+
@namespace BootstrapBlazor.Components
22
@typeparam TModel
33
@inherits BootstrapComponentBase
44

@@ -8,7 +8,7 @@
88
<CascadingValue Value="@_editorItems" IsFixed="false">
99
@FieldItems?.Invoke(Model)
1010
</CascadingValue>
11-
<CascadingValue Value="this" Name="EditorForm">
11+
<CascadingValue Value="this" Name="EditorForm" IsFixed="true">
1212
<div class="form-body">
1313
@if (ShowUnsetGroupItemsOnTop)
1414
{

0 commit comments

Comments
 (0)