From 5f0dfedfbf78f1c10e535a07ec9edba63f6319d6 Mon Sep 17 00:00:00 2001 From: jianneng-fit2cloud Date: Tue, 29 Oct 2024 10:15:01 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E5=9B=BE=E8=A1=A8):=20=E5=8A=A8=E6=80=81?= =?UTF-8?q?=E6=97=B6=E9=97=B4=E5=8C=BA=E9=97=B4=E9=BB=98=E8=AE=A4=E5=80=BC?= =?UTF-8?q?=E7=B1=BB=E5=9E=8B=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/custom-component/v-query/DynamicTimeFiltering.vue | 2 +- .../src/custom-component/v-query/DynamicTimeRangeFiltering.vue | 2 +- 2 files 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 952d905aea..513b91bea7 100644 --- a/core/core-frontend/src/custom-component/v-query/DynamicTimeFiltering.vue +++ b/core/core-frontend/src/custom-component/v-query/DynamicTimeFiltering.vue @@ -32,7 +32,7 @@ const props = defineProps({ timeGranularityMultiple: { type: Object as PropType, default: () => { - return 'yearrange' + return { type: 'yearrange' } as PropType } } }) 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 97edfc9c86..e7804ebad5 100644 --- a/core/core-frontend/src/custom-component/v-query/DynamicTimeRangeFiltering.vue +++ b/core/core-frontend/src/custom-component/v-query/DynamicTimeRangeFiltering.vue @@ -41,7 +41,7 @@ const props = defineProps({ timeGranularityMultiple: { type: Object as PropType, default: () => { - return 'yearrange' + return { type: 'yearrange' } as PropType } } })