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 eadd595 commit 5420721Copy full SHA for 5420721
2 files changed
src/BootstrapBlazor/BootstrapBlazor.csproj
@@ -1,7 +1,7 @@
1
<Project Sdk="Microsoft.NET.Sdk.Razor">
2
3
<PropertyGroup>
4
- <Version>9.5.11-beta06</Version>
+ <Version>9.5.11-beta07</Version>
5
</PropertyGroup>
6
7
<ItemGroup>
src/BootstrapBlazor/Components/Button/PopConfirmButton.razor.cs
@@ -99,7 +99,11 @@ private async Task OnClickConfirm()
99
IsDisabled = true;
100
IsAsyncLoading = true;
101
StateHasChanged();
102
- await OnConfirm();
+
103
+ if (OnConfirm != null)
104
+ {
105
+ await OnConfirm();
106
+ }
107
108
if (ButtonType == ButtonType.Submit)
109
{
0 commit comments