diff --git a/core/core-frontend/src/custom-component/v-query/ConditionDefaultConfiguration.vue b/core/core-frontend/src/custom-component/v-query/ConditionDefaultConfiguration.vue index 693490f499..e27a7a24dd 100644 --- a/core/core-frontend/src/custom-component/v-query/ConditionDefaultConfiguration.vue +++ b/core/core-frontend/src/custom-component/v-query/ConditionDefaultConfiguration.vue @@ -57,14 +57,14 @@ const props = defineProps({ const showFlag = computed(() => props.showPosition === 'main') const { curComponent } = toRefs(props) -const loadingDeault = ref(true) +const loadingDefault = ref(true) watch( () => curComponent.value.id, val => { if (!val) return - loadingDeault.value = false + loadingDefault.value = false nextTick(() => { - loadingDeault.value = true + loadingDefault.value = true }) }, { immediate: true } @@ -657,7 +657,7 @@ defineExpose({