From f019879d8c4355b38b03485cc051c3bd557b7220 Mon Sep 17 00:00:00 2001 From: Argo-Lenovo Date: Sun, 5 Jun 2022 12:07:18 +0800 Subject: [PATCH 1/3] =?UTF-8?q?feat:=20=E5=A2=9E=E5=8A=A0=E5=AF=B9?= =?UTF-8?q?=E5=90=8C=E6=AD=A5=E6=96=B9=E6=B3=95=E7=9A=84=E5=BC=82=E6=AD=A5?= =?UTF-8?q?=E6=94=AF=E6=8C=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/BootstrapBlazor/Components/Button/PopConfirmButton.razor.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BootstrapBlazor/Components/Button/PopConfirmButton.razor.cs b/src/BootstrapBlazor/Components/Button/PopConfirmButton.razor.cs index 31badedbd..78d8972a2 100644 --- a/src/BootstrapBlazor/Components/Button/PopConfirmButton.razor.cs +++ b/src/BootstrapBlazor/Components/Button/PopConfirmButton.razor.cs @@ -105,7 +105,7 @@ public partial class PopConfirmButton Icon = LoadingIcon; StateHasChanged(); - await OnConfirm(); + await Task.Run(() => OnConfirm()); IsDisabled = false; Icon = icon; -- Gitee From dda8ecfc4ff9baa1d628b2c228a271368acd3e9a Mon Sep 17 00:00:00 2001 From: Argo-Lenovo Date: Sun, 5 Jun 2022 12:07:38 +0800 Subject: [PATCH 2/3] =?UTF-8?q?feat:=20=E5=A2=9E=E5=8A=A0=E9=A2=9C?= =?UTF-8?q?=E8=89=B2=E6=A0=B7=E5=BC=8F=E4=BD=BF=E7=94=A8=20link-color?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/BootstrapBlazor/Components/Button/PopConfirmButton.razor.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BootstrapBlazor/Components/Button/PopConfirmButton.razor.cs b/src/BootstrapBlazor/Components/Button/PopConfirmButton.razor.cs index 78d8972a2..d6a425ce8 100644 --- a/src/BootstrapBlazor/Components/Button/PopConfirmButton.razor.cs +++ b/src/BootstrapBlazor/Components/Button/PopConfirmButton.razor.cs @@ -15,7 +15,7 @@ public partial class PopConfirmButton private string? PopButtonClassName => IsLink ? InternalClassName : ClassName; private string? InternalClassName => CssBuilder.Default() - .AddClass($"text-{Color.ToDescriptionString()}", Color != Color.None) + .AddClass($"link-{Color.ToDescriptionString()}", Color != Color.None) .AddClassFromAttributes(AdditionalAttributes) .Build(); -- Gitee From adfd94046db44e8c402f200d15e32c50eaf51202 Mon Sep 17 00:00:00 2001 From: Argo-Lenovo Date: Sun, 5 Jun 2022 12:12:38 +0800 Subject: [PATCH 3/3] chore: bump version 6.7.5 --- 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 1d2ce61d8..55f8c3843 100644 --- a/src/BootstrapBlazor/BootstrapBlazor.csproj +++ b/src/BootstrapBlazor/BootstrapBlazor.csproj @@ -1,7 +1,7 @@ - 6.7.4 + 6.7.5 -- Gitee