From 371a3e10788ae8e0a565b66b1f9f7f20d60d0ba1 Mon Sep 17 00:00:00 2001 From: alwayrun Date: Tue, 28 May 2024 18:15:28 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E9=A2=98=E5=9E=8B=E5=88=87=E6=8D=A2=20C?= =?UTF-8?q?heckboxGroup=20=E5=9F=BA=E7=A1=80=E8=AE=BE=E7=BD=AE=E7=BB=84?= =?UTF-8?q?=E4=BB=B6=E7=8A=B6=E6=80=81=E7=9B=91=E6=8E=A7=E5=AF=BC=E8=87=B4?= =?UTF-8?q?=E9=97=AE=E9=A2=98=20(#177)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- web/src/materials/setters/widgets/CheckboxGroup.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/materials/setters/widgets/CheckboxGroup.vue b/web/src/materials/setters/widgets/CheckboxGroup.vue index d041efa7..3356ca34 100644 --- a/web/src/materials/setters/widgets/CheckboxGroup.vue +++ b/web/src/materials/setters/widgets/CheckboxGroup.vue @@ -41,7 +41,7 @@ const handleCheckboxChange = (key: string, value: boolean) => { const optionsValue = reactive(props.formConfig?.value) watch( - props.formConfig.value, + () => props.formConfig?.value, (val) => { const keys = Object.keys(val)