diff --git a/src/views/entityExplorer/EntityExplorer.vue b/src/views/entityExplorer/EntityExplorer.vue index 02ebc3a3..3ddf7c2f 100644 --- a/src/views/entityExplorer/EntityExplorer.vue +++ b/src/views/entityExplorer/EntityExplorer.vue @@ -70,7 +70,7 @@
{{ $t('network.total') }}
- +
{{ numberWithCommas(entityAppTotal) }}
@@ -100,7 +100,7 @@
{{ $t('network.total') }}
- +
{{ numberWithCommas(entityDomainTotal) }}
@@ -130,7 +130,7 @@
{{ $t('network.total') }}
- +
{{ numberWithCommas(entityIpTotal) }}
@@ -276,10 +276,6 @@ export default { loadingApp: false, loadingDomain: false, loadingIp: false, - // New - loadingAppNew: false, - loadingDomainNew: false, - loadingIpNew: false, // Active loadingAppActive: false, loadingDomainActive: false, @@ -606,16 +602,12 @@ export default { this.loadingApp = true this.loadingDomain = true this.loadingIp = true - // New - this.loadingAppNew = true - this.loadingDomainNew = true - this.loadingIpNew = true // Active this.loadingAppActive = true this.loadingDomainActive = true this.loadingIpActive = true - axios.get(api.entity.entityList.entityActive).then(response => { + axios.get(api.entity.entityList.entityTotal).then(response => { if (response.status === 200) { this.entityDomainTotal = response.data.data.domainCount this.entityIpTotal = response.data.data.ipCount @@ -625,17 +617,6 @@ export default { this.loadingIp = false this.loadingApp = false }) - // New - axios.get(api.entity.entityList.entityNew).then(response => { - if (response.status === 200) { - this.entityDomainNew = response.data.data.domainCount - this.entityIpNew = response.data.data.ipCount - this.entityAppNew = response.data.data.appCount - } - this.loadingDomainNew = false - this.loadingIpNew = false - this.loadingAppNew = false - }) // Active axios.get(api.entity.entityList.entityActive).then(response => { if (response.status === 200) {