From 0f6876351dbf5ccea9e255068607450194066ab0 Mon Sep 17 00:00:00 2001 From: Argo-Tianyi Date: Tue, 10 Aug 2021 00:09:17 +0800 Subject: [PATCH 1/3] =?UTF-8?q?fix:=20=E5=A2=9E=E5=8A=A0=20d-none=20?= =?UTF-8?q?=E6=A0=B7=E5=BC=8F=E4=BF=AE=E5=A4=8D=E7=82=B9=E5=87=BB=E5=88=A0?= =?UTF-8?q?=E9=99=A4=E6=8C=89=E9=92=AE=E5=90=8E=E6=97=A0=E6=B3=95=E7=82=B9?= =?UTF-8?q?=E5=87=BB=E6=96=B0=E5=BB=BA=E6=8C=89=E9=92=AE=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Components/Popover/PopoverConfirmBox.razor.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BootstrapBlazor/Components/Popover/PopoverConfirmBox.razor.cs b/src/BootstrapBlazor/Components/Popover/PopoverConfirmBox.razor.cs index ea7cba919..12b5b807c 100644 --- a/src/BootstrapBlazor/Components/Popover/PopoverConfirmBox.razor.cs +++ b/src/BootstrapBlazor/Components/Popover/PopoverConfirmBox.razor.cs @@ -17,7 +17,7 @@ namespace BootstrapBlazor.Components /// /// 获得 组件样式 /// - protected string? ClassName => CssBuilder.Default("popover fade shadow") + protected string? ClassName => CssBuilder.Default("popover fade shadow d-none") .AddClassFromAttributes(AdditionalAttributes) .Build(); -- Gitee From e5ced2572870a905fe4ef99d40abb13e760cf4ee Mon Sep 17 00:00:00 2001 From: Argo-Tianyi Date: Tue, 10 Aug 2021 00:09:41 +0800 Subject: [PATCH 2/3] =?UTF-8?q?refactor:=20=E9=87=8D=E6=9E=84=E4=BB=A3?= =?UTF-8?q?=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/BootstrapBlazor/Components/Popover/Popover.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BootstrapBlazor/Components/Popover/Popover.js b/src/BootstrapBlazor/Components/Popover/Popover.js index 6f6a14b41..9e63f8ba1 100644 --- a/src/BootstrapBlazor/Components/Popover/Popover.js +++ b/src/BootstrapBlazor/Components/Popover/Popover.js @@ -14,7 +14,7 @@ }, bb_popover: function (id, method, title, content, placement, html, trigger) { var $ele = $('#' + id); - var op = { html: html, sanitize: false, title: title, content: content, placement: placement, trigger: trigger }; + var op = { html, sanitize: false, title, content, placement, trigger }; if (method === "") { if ($ele.data('bs.popover')) $ele.popover('dispose'); $ele.popover(op); -- Gitee From 20d2e091177e6eead0349b300433a9ec7d2c61a1 Mon Sep 17 00:00:00 2001 From: Argo-Tianyi Date: Tue, 10 Aug 2021 00:10:59 +0800 Subject: [PATCH 3/3] chore: bump version to 5.5.3 --- src/BootstrapBlazor/BootstrapBlazor.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BootstrapBlazor/BootstrapBlazor.csproj b/src/BootstrapBlazor/BootstrapBlazor.csproj index c508ebd19..c1258239d 100644 --- a/src/BootstrapBlazor/BootstrapBlazor.csproj +++ b/src/BootstrapBlazor/BootstrapBlazor.csproj @@ -1,7 +1,7 @@ - 5.5.2 + 5.5.3 -- Gitee