From 3275b63b62cad9f597f44933ee01ee55edb2ed0d Mon Sep 17 00:00:00 2001 From: dataeaseShu Date: Wed, 10 Jul 2024 14:49:31 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E6=9F=A5=E8=AF=A2=E7=BB=84=E4=BB=B6):=20?= =?UTF-8?q?=E6=9F=A5=E8=AF=A2=E6=9D=A1=E4=BB=B6=E8=AE=BE=E7=BD=AE=E6=97=B6?= =?UTF-8?q?=EF=BC=8C"=E5=9B=BE=E8=A1=A8=E6=89=80=E4=BD=BF=E7=94=A8?= =?UTF-8?q?=E7=9A=84=E6=95=B0=E6=8D=AE=E9=9B=86=E4=B8=8D=E5=90=8C,=20?= =?UTF-8?q?=E6=97=A0=E6=B3=95=E5=B1=95=E7=A4=BA=E9=85=8D=E7=BD=AE=E9=A1=B9?= =?UTF-8?q?"=EF=BC=8C=E8=BF=99=E6=A0=B7=E5=A4=84=E7=90=86=E7=9A=84?= =?UTF-8?q?=E5=8E=9F=E5=9B=A0=E6=98=AF=E4=BB=80=E4=B9=88=EF=BC=9F=20#10821?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../custom-component/v-query/QueryConditionConfiguration.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/core-frontend/src/custom-component/v-query/QueryConditionConfiguration.vue b/core/core-frontend/src/custom-component/v-query/QueryConditionConfiguration.vue index 72948e8c92..115655cb4e 100644 --- a/core/core-frontend/src/custom-component/v-query/QueryConditionConfiguration.vue +++ b/core/core-frontend/src/custom-component/v-query/QueryConditionConfiguration.vue @@ -178,7 +178,7 @@ const showTypeError = computed(() => { }) const showDatasetError = computed(() => { - if (!curComponent.value) return false + if (!curComponent.value || curComponent.value.displayType !== '9') return false if (!curComponent.value.checkedFields?.length) return false if (!fields.value?.length) return false let displayField = null