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)