From 786b8d81d2d68af200ed1d3e76e35c35df74edcf Mon Sep 17 00:00:00 2001 From: guoapeng Date: Thu, 17 Jul 2025 16:12:28 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E8=BF=90=E8=A1=8C=E5=8F=82=E6=95=B0?= =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=A0=A1=E9=AA=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/formula/RunFormulaConfig.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/formula/RunFormulaConfig.vue b/src/components/formula/RunFormulaConfig.vue index d827b29..afa5d6f 100644 --- a/src/components/formula/RunFormulaConfig.vue +++ b/src/components/formula/RunFormulaConfig.vue @@ -8,7 +8,7 @@ import { useFormulaStore } from '@/stores/formulaStore' const formulaStore = useFormulaStore() const runtimeFormRef = ref() const saveFormData = async () => { - const valid = await runtimeFormRef.value.validate + const valid = await runtimeFormRef.value.validate() if (valid) { return convertValuesToString(formData.value, 'name') }