From e6a73840ab7c7cbd5a5a534bd248f5ed5df11e5c Mon Sep 17 00:00:00 2001 From: Tian_ya_luer <75418256+Tian-ya-luer@users.noreply.github.com> Date: Sun, 11 Feb 2024 14:30:12 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=BD=93TableAction=E7=9A=84actions?= =?UTF-8?q?=E5=B1=9E=E6=80=A7=E4=B8=AD=E7=9A=84ActionItem=E4=BC=A0?= =?UTF-8?q?=E9=80=92=E4=BA=86color=E5=B1=9E=E6=80=A7=E6=97=B6=EF=BC=8CPopC?= =?UTF-8?q?onfirm=E7=9A=84=E6=8C=87=E7=A4=BA=E7=AE=AD=E5=A4=B4=E9=A2=9C?= =?UTF-8?q?=E8=89=B2=E5=BC=82=E5=B8=B8=E9=97=AE=E9=A2=98=20(#3597)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: linja --- src/components/Button/src/PopConfirmButton.vue | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/components/Button/src/PopConfirmButton.vue b/src/components/Button/src/PopConfirmButton.vue index 1e33889f..b7f325a9 100644 --- a/src/components/Button/src/PopConfirmButton.vue +++ b/src/components/Button/src/PopConfirmButton.vue @@ -47,6 +47,9 @@ if (!props.enable) { return Button; } + if (bindValues.color) { + delete bindValues.color; + } return h(Popconfirm, bindValues, { default: () => Button }); }; },