diff --git a/core/frontend/src/views/chart/view/ChartEdit.vue b/core/frontend/src/views/chart/view/ChartEdit.vue
index ed2c23cdcb..e364ca5eed 100644
--- a/core/frontend/src/views/chart/view/ChartEdit.vue
+++ b/core/frontend/src/views/chart/view/ChartEdit.vue
@@ -2064,7 +2064,7 @@ export default {
},
computed: {
filedList() {
- return [...this.dimension, ...this.quota]
+ return [...this.dimension, ...this.quota].filter(ele => ele.id !== 'count')
},
obj() {
return {
diff --git a/core/frontend/src/views/chart/view/FilterTree.vue b/core/frontend/src/views/chart/view/FilterTree.vue
index 278526a6f2..68d891cf63 100644
--- a/core/frontend/src/views/chart/view/FilterTree.vue
+++ b/core/frontend/src/views/chart/view/FilterTree.vue
@@ -16,15 +16,16 @@
slot="footer"
class="dialog-footer"
>
- {{ $t('chart.cancel') }}
-
-
+ {{ $t('chart.confirm') }}
-
+
@@ -105,13 +106,13 @@ export default {