We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbf866c commit 8dd3e1dCopy full SHA for 8dd3e1d
2 files changed
src/BootstrapBlazor/BootstrapBlazor.csproj
@@ -1,7 +1,7 @@
1
<Project Sdk="Microsoft.NET.Sdk.Razor">
2
3
<PropertyGroup>
4
- <Version>10.1.4-beta02</Version>
+ <Version>10.1.4-beta03</Version>
5
</PropertyGroup>
6
7
<ItemGroup>
src/BootstrapBlazor/Components/Button/Button.razor.cs
@@ -1,4 +1,4 @@
-// Licensed to the .NET Foundation under one or more agreements.
+// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the Apache 2.0 License
// See the LICENSE file in the project root for more information.
// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone
@@ -46,6 +46,7 @@ protected virtual async Task OnClickButton()
46
{
47
IsAsyncLoading = true;
48
IsDisabled = true;
49
+ await Task.Yield();
50
}
51
52
await HandlerClick();
0 commit comments