From 15a3d4217776f8f4e2ffe8a512165375614a5572 Mon Sep 17 00:00:00 2001 From: FliPPeDround <70848683+FliPPeDround@users.noreply.github.com> Date: Wed, 4 Jan 2023 16:58:14 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8Dmax=E5=B1=9E=E6=80=A7?= =?UTF-8?q?=E6=97=A0=E6=95=88=E9=97=AE=E9=A2=98=20(#2233)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/checkbox/checkbox.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/checkbox/checkbox.tsx b/src/checkbox/checkbox.tsx index dcbbf8cc5c..05a521e85d 100644 --- a/src/checkbox/checkbox.tsx +++ b/src/checkbox/checkbox.tsx @@ -44,7 +44,7 @@ export default defineComponent({ }); const disabled = computed(() => { - if (formDisabled) return formDisabled.value; + if (formDisabled.value) return formDisabled.value; if (!props.checkAll && !selfChecked.value && checkboxGroup?.maxExceeded) { return true; }