From ab7dc2fb15f64c4a80505efdd510a62c0edcdf3e Mon Sep 17 00:00:00 2001 From: dataeaseShu Date: Wed, 30 Oct 2024 16:17:53 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E7=BC=96=E8=AF=91=E6=8A=A5=E9=94=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/custom-component/v-query/DynamicTimeFiltering.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/core-frontend/src/custom-component/v-query/DynamicTimeFiltering.vue b/core/core-frontend/src/custom-component/v-query/DynamicTimeFiltering.vue index 513b91bea7..dd182f6ed9 100644 --- a/core/core-frontend/src/custom-component/v-query/DynamicTimeFiltering.vue +++ b/core/core-frontend/src/custom-component/v-query/DynamicTimeFiltering.vue @@ -30,9 +30,9 @@ const props = defineProps({ } }, timeGranularityMultiple: { - type: Object as PropType, + type: String as PropType, default: () => { - return { type: 'yearrange' } as PropType + return 'yearrange' } } })