From 2cac54a9913439ff917f5b13d0e33ad4a62a1616 Mon Sep 17 00:00:00 2001 From: dataeaseShu Date: Wed, 30 Oct 2024 16:12:01 +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 --- .../custom-component/v-query/DynamicTimeRangeFiltering.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/core-frontend/src/custom-component/v-query/DynamicTimeRangeFiltering.vue b/core/core-frontend/src/custom-component/v-query/DynamicTimeRangeFiltering.vue index e7804ebad5..4715db89dd 100644 --- a/core/core-frontend/src/custom-component/v-query/DynamicTimeRangeFiltering.vue +++ b/core/core-frontend/src/custom-component/v-query/DynamicTimeRangeFiltering.vue @@ -39,9 +39,9 @@ const props = defineProps({ } }, timeGranularityMultiple: { - type: Object as PropType, + type: String as PropType, default: () => { - return { type: 'yearrange' } as PropType + return 'yearrange' } } })