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 7d9a6a9 commit a7528e3Copy full SHA for a7528e3
src/BootstrapBlazor/BootstrapBlazor.csproj
@@ -1,7 +1,7 @@
1
<Project Sdk="Microsoft.NET.Sdk.Razor">
2
3
<PropertyGroup>
4
- <Version>8.9.1-beta05</Version>
+ <Version>8.9.1</Version>
5
</PropertyGroup>
6
7
<ItemGroup Condition="'$(TargetFramework)' == 'net5.0'">
src/BootstrapBlazor/Components/Button/PopConfirmButton.razor.js
@@ -49,7 +49,9 @@ export function init(id) {
49
clearTimeout(handler);
50
const hasConfirm = el.hasAttribute('data-bb-confirm');
51
if (hasConfirm) {
52
- confirm.popover.dispose();
+ if (confirm.popover.tip) {
53
+ confirm.popover.dispose();
54
+ }
55
delete confirm.popover;
56
}
57
}, 50);
0 commit comments