forked from github/dataease
fix(仪表板): 修复过滤报错
This commit is contained in:
parent
4944968476
commit
c78febd7f9
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user