diff --git a/src/components/entities/EntityTop.vue b/src/components/entities/EntityTop.vue index 0036cdf9..d352a89b 100644 --- a/src/components/entities/EntityTop.vue +++ b/src/components/entities/EntityTop.vue @@ -65,6 +65,7 @@ export default { computed: { totalCount2 () { return function (row) { + console.info(this.totalCount, row, (this.totalCount === 0 ? 0 : parseFloat(row.count / this.totalCount) * 100).toFixed(2)) return (this.totalCount === 0 ? 0 : parseFloat(row.count / this.totalCount) * 100).toFixed(2) } } diff --git a/src/views/entityExplorer/EntityFilter.vue b/src/views/entityExplorer/EntityFilter.vue index 36fb38fe..973cb03f 100644 --- a/src/views/entityExplorer/EntityFilter.vue +++ b/src/views/entityExplorer/EntityFilter.vue @@ -86,7 +86,6 @@ export default { }) this.totalCount = count } - console.info('current-column-change', n, this.totalCount, this.filterData) } }, methods: { @@ -102,7 +101,6 @@ export default { }) item.showTopTen = true this.currentColumn = item.column - console.info('show-top-dialog', item) const queryParams = { q: this.q, entityType: filter.type,