From c78febd7f915e388d58d6937cf78887e7afba922 Mon Sep 17 00:00:00 2001 From: dataeaseShu Date: Mon, 27 May 2024 17:15:54 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E4=BB=AA=E8=A1=A8=E6=9D=BF):=20=E4=BF=AE?= =?UTF-8?q?=E5=A4=8D=E8=BF=87=E6=BB=A4=E6=8A=A5=E9=94=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/core-frontend/src/views/chart/components/editor/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/core-frontend/src/views/chart/components/editor/index.vue b/core/core-frontend/src/views/chart/components/editor/index.vue index b6084fc5fc..fce40fcf05 100644 --- a/core/core-frontend/src/views/chart/components/editor/index.vue +++ b/core/core-frontend/src/views/chart/components/editor/index.vue @@ -184,7 +184,7 @@ const state = reactive({ }) const filedList = computed(() => { - return [...state.dimension, ...state.quota].filter(ele => ele.id !== 'count') + return [...state.dimension, ...state.quota].filter(ele => ele.id !== 'count' && !!ele.summary) }) provide('filedList', () => filedList.value)