diff --git a/api-test/frontend/src/business/home/components/chart/CountChart.vue b/api-test/frontend/src/business/home/components/chart/CountChart.vue index fe1db1ef60..c4ad50d3dc 100644 --- a/api-test/frontend/src/business/home/components/chart/CountChart.vue +++ b/api-test/frontend/src/business/home/components/chart/CountChart.vue @@ -84,7 +84,7 @@ export default { let dataIsNotEmpty = false; let protocolData = [ { value: 0, name: 'HTTP' }, - { value: 0, name: 'RPC' }, + { value: 0, name: 'DUBBO' }, { value: 0, name: 'TCP' }, { value: 0, name: 'SQL' }, ]; @@ -96,7 +96,7 @@ export default { dataIsNotEmpty = true; protocolData = [ { value: this.apiData.httpCount > 0 ? this.apiData.httpCount : '-', name: 'HTTP' }, - { value: this.apiData.rpcCount > 0 ? this.apiData.rpcCount : '-', name: 'RPC' }, + { value: this.apiData.rpcCount > 0 ? this.apiData.rpcCount : '-', name: 'DUBBO' }, { value: this.apiData.tcpCount > 0 ? this.apiData.tcpCount : '-', name: 'TCP' }, { value: this.apiData.sqlCount > 0 ? this.apiData.sqlCount : '-', name: 'SQL' }, ]; diff --git a/api-test/frontend/src/business/home/components/dashboard/ApiDashboard.vue b/api-test/frontend/src/business/home/components/dashboard/ApiDashboard.vue index 904dbfc82e..4982c1c3a3 100644 --- a/api-test/frontend/src/business/home/components/dashboard/ApiDashboard.vue +++ b/api-test/frontend/src/business/home/components/dashboard/ApiDashboard.vue @@ -50,7 +50,7 @@ margin: 7px; float: left; " /> - HTTP: + HTTP :
- RPC : + DUBBO :
- RPC : + DUBBO :