Skip to content

Commit 1934423

Browse files
ArgoZhangA5196060AxxbisMadLongTom
authored
refactor(EditForm): remove lookup service second render (#4914)
* doc: 代码格式化 Co-Authored-By: A5196060 <166673003+A5196060@users.noreply.github.com> * refactor: 移除 ef-loading 节点 Co-Authored-By: ZhYan <19183404+Axxbis@users.noreply.github.com> Co-Authored-By: A5196060 <166673003+A5196060@users.noreply.github.com> * chore: bump version 9.1.7 bump version 9.1.7 Co-Authored-By: MadLongTom <36219016+MadLongTom@users.noreply.github.com> --------- Co-authored-by: A5196060 <166673003+A5196060@users.noreply.github.com> Co-authored-by: ZhYan <19183404+Axxbis@users.noreply.github.com> Co-authored-by: MadLongTom <36219016+MadLongTom@users.noreply.github.com>
1 parent 6832424 commit 1934423

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

src/BootstrapBlazor/BootstrapBlazor.csproj

+1-1
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.1.6</Version>
4+
<Version>9.1.7</Version>
55
</PropertyGroup>
66

77
<ItemGroup>

src/BootstrapBlazor/Components/EditorForm/EditorForm.razor

-4
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,6 @@
3939
@Buttons
4040
</div>
4141
}
42-
43-
<div class="ef-loading">
44-
<Spinner Color="Color.Primary" />
45-
</div>
4642
</div>
4743

4844
@code

src/BootstrapBlazor/Components/ValidateForm/ValidateForm.razor

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
@if (Model != null)
66
{
77
<CascadingValue Value="this" IsFixed="true">
8-
<EditForm Model="@Model" @attributes="@AdditionalAttributes" id="@Id" data-bb-dissubmit="@DisableAutoSubmitString" data-bb-invalid-result="@ShowAllInvalidResultString" OnValidSubmit="@OnValidSubmitForm" OnInvalidSubmit="@OnInvalidSubmitForm">
8+
<EditForm Model="@Model" @attributes="@AdditionalAttributes" id="@Id" data-bb-dissubmit="@DisableAutoSubmitString" data-bb-invalid-result="@ShowAllInvalidResultString" OnValidSubmit="@OnValidSubmitForm" OnInvalidSubmit="@OnInvalidSubmitForm">
99
<BootstrapBlazorDataAnnotationsValidator @ref="Validator" />
1010
@ChildContent
1111
</EditForm>

0 commit comments

Comments
 (0)