Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/BootstrapBlazor/BootstrapBlazor.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Razor">

<PropertyGroup>
<Version>10.1.4-beta05</Version>
<Version>10.1.3</Version>
Copy link

Copilot AI Dec 13, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The version has been changed from 10.1.4-beta05 to 10.1.3, which represents a downgrade from a beta version to an older stable version. This appears to be unintentional and could cause confusion in versioning. If this is a fix for version 10.1.3, consider using 10.1.3.1 or 10.1.4 instead. If this is intentional, please clarify the versioning strategy.

Copilot uses AI. Check for mistakes.
</PropertyGroup>

<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions src/BootstrapBlazor/Components/EditorForm/EditorForm.razor
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@namespace BootstrapBlazor.Components
@namespace BootstrapBlazor.Components
@typeparam TModel
@inherits BootstrapComponentBase

Expand All @@ -8,7 +8,7 @@
<CascadingValue Value="@_editorItems" IsFixed="false">
@FieldItems?.Invoke(Model)
</CascadingValue>
<CascadingValue Value="this" Name="EditorForm">
<CascadingValue Value="this" Name="EditorForm" IsFixed="true">
<div class="form-body">
@if (ShowUnsetGroupItemsOnTop)
{
Expand Down