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 803848f0bf..c66b6b0860 100644 --- a/core/core-frontend/src/custom-component/v-query/QueryConditionConfiguration.vue +++ b/core/core-frontend/src/custom-component/v-query/QueryConditionConfiguration.vue @@ -212,7 +212,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